diff options
Diffstat (limited to 'src/client/views/nodes/QueryBox.tsx')
-rw-r--r-- | src/client/views/nodes/QueryBox.tsx | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/client/views/nodes/QueryBox.tsx b/src/client/views/nodes/QueryBox.tsx index 99b5810fc..b2f9ca8fe 100644 --- a/src/client/views/nodes/QueryBox.tsx +++ b/src/client/views/nodes/QueryBox.tsx @@ -6,6 +6,7 @@ import { observer } from "mobx-react"; import { FilterBox } from "../search/FilterBox"; import { FieldView, FieldViewProps } from './FieldView'; import "./PresBox.scss"; +import { SearchBox } from "../search/SearchBox"; library.add(faArrowLeft); library.add(faArrowRight); @@ -29,7 +30,10 @@ export class QueryBox extends React.Component<FieldViewProps> { render() { return <div style={{ width: "100%", height: "100%", position: "absolute", pointerEvents: "all" }}> - <FilterBox></FilterBox> - </div>; + <div style={{ display: "flex", flexDirection: "row-reverse" }}> + <SearchBox /> + </div> + + </div >; } }
\ No newline at end of file |