Make data explorer's search input always visible
[arvados-workbench2.git] / src / components / data-explorer / data-explorer.tsx
index a0ddc28a89eebe781fd128e8b3f4c92454341946..09a327268b76073b3bc92f90db91e4ea9ab8e5d9 100644 (file)
@@ -54,9 +54,9 @@ class DataExplorer<T extends DataItem> extends React.Component<DataExplorerProps
             <Toolbar className={this.props.classes.toolbar}>
                 <Grid container justify="space-between" wrap="nowrap" alignItems="center">
                     <div className={this.props.classes.searchBox}>
-                        {this.props.items.length > 0 && <SearchInput
+                        <SearchInput
                             value={this.props.searchValue}
-                            onSearch={this.props.onSearch} />}
+                            onSearch={this.props.onSearch} />
                     </div>
                     <ColumnSelector
                         columns={this.props.columns}