diff --git a/frontend/src/app.js b/frontend/src/app.js index 721a18e1c8..2c073ac446 100644 --- a/frontend/src/app.js +++ b/frontend/src/app.js @@ -273,6 +273,7 @@ class App extends Component { onShowSidePanel={this.onShowSidePanel} onSearchedClick={this.onSearchedClick} eventBus={this.eventBus} + isSidePanelFolded={isSidePanelFolded} />
{Utils.isDesktop() && !isSidePanelFolded && { + if (this.props.isSidePanelFolded) { + this.props.eventBus.dispatch('top-header-mouse-enter'); + } + }; + render() { const { onShowSidePanel, onSearchedClick, showSearch, children } = this.props; return ( -