support props injection

This commit is contained in:
SrGooglo 2023-06-27 00:11:23 +00:00
parent 2f14c11cd4
commit 616a2da2c5

View File

@ -84,7 +84,9 @@ export class PagePanelWithNavMenu extends React.Component {
/> />
} }
return React.createElement(tab.component) const componentProps = tab.props ?? this.props.tabProps
return React.createElement(tab.component, componentProps)
} }
replaceQueryTypeToCurrentTab = () => { replaceQueryTypeToCurrentTab = () => {