publish: pass active prop to sidebar

This commit is contained in:
Matilde Park 2020-01-23 13:54:44 -05:00
parent 02d2378796
commit df5d6c76d1
2 changed files with 4 additions and 2 deletions

View File

@ -48948,11 +48948,12 @@
, react.createElement('div', { className: `cf w-100 h-100 flex ` + popoutBorder, __self: this, __source: {fileName: _jsxFileName$4, lineNumber: 25}}
, react.createElement(Sidebar, {
popout: popout,
sidebarShown: this.props.sidebarShown, __self: this, __source: {fileName: _jsxFileName$4, lineNumber: 26}}
sidebarShown: this.props.sidebarShown,
active: this.props.active, __self: this, __source: {fileName: _jsxFileName$4, lineNumber: 26}}
)
, react.createElement('div', { className: "h-100 w-100 " + rightPanelHide, style: {
flexGrow: 1,
}, __self: this, __source: {fileName: _jsxFileName$4, lineNumber: 30}}
}, __self: this, __source: {fileName: _jsxFileName$4, lineNumber: 31}}
, this.props.children
)
)

View File

@ -26,6 +26,7 @@ export class Skeleton extends Component {
<Sidebar
popout={popout}
sidebarShown={this.props.sidebarShown}
active={this.props.active}
/>
<div className={"h-100 w-100 " + rightPanelHide} style={{
flexGrow: 1,