1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-04 16:31:13 +00:00

Router optimized (#2565)

This commit is contained in:
杨顺强
2018-11-26 17:53:18 +08:00
committed by Daniel Pan
parent f6a0b30281
commit 50a04fed0c
12 changed files with 143 additions and 201 deletions

View File

@@ -13,7 +13,7 @@ class GeneralToolbar extends React.Component {
let { onShowSidePanel, onSearchedClick } = this.props;
let placeHolder = this.props.searchPlaceholder || 'Search files in this library';
return (
<Fragment>
<div className="main-panel-north">
<div className="cur-view-toolbar">
<span
className="sf2-icon-menu side-nav-toggle hidden-md-up d-md-none"
@@ -25,7 +25,7 @@ class GeneralToolbar extends React.Component {
searchPlaceholder={placeHolder}
onSearchedClick={onSearchedClick}
/>
</Fragment>
</div>
);
}
}