From 28ebb70c6a8ddd60b2c025da0012a60790cd8188 Mon Sep 17 00:00:00 2001 From: Sny Date: Tue, 24 Sep 2024 15:10:08 +0530 Subject: [PATCH] OpenConceptLab/ocl_issues#1875 | Filters button on the left --- src/components/search/SearchResults.jsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/components/search/SearchResults.jsx b/src/components/search/SearchResults.jsx index 53aef545..a900d583 100644 --- a/src/components/search/SearchResults.jsx +++ b/src/components/search/SearchResults.jsx @@ -21,7 +21,7 @@ const ResultsToolbar = props => { return ( 0 && { bgcolor: (theme) => @@ -33,6 +33,12 @@ const ResultsToolbar = props => { borderTopRightRadius: '8px' }} > + { + isFilterable && + + + + } {numSelected > 0 ? ( { sortableFields={sortableFields} noCardDisplay={noCardDisplay} /> - { - isFilterable && - - - - } ); }