Skip to content

Commit

Permalink
feat: moved linebar under condition
Browse files Browse the repository at this point in the history
  • Loading branch information
Rassl committed Oct 16, 2024
1 parent c2d9853 commit 723fb6b
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/components/App/SideBar/FilterSearch/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,13 @@ export const FilterSearch = ({ anchorEl, setAnchorEl, onClose }: Props) => {
open={Boolean(anchorEl)}
placement="bottom-end"
>
{fastFiltersFeatureFlag && <FastFilters handleFastFiltersSelect={handleSchemaTypesSelect} />}
<LineBar />
{fastFiltersFeatureFlag && (
<>
<FastFilters handleFastFiltersSelect={handleSchemaTypesSelect} />
<LineBar />
</>
)}

<NodeTypes handleSchemaTypeClick={handleSchemaTypeClick} schemaAll={schemaAll} selectedTypes={selectedTypes} />
<LineBar />
<SourceNodes setSourceNodes={setSourceNodes} sourceNodes={sourceNodes} />
Expand Down

0 comments on commit 723fb6b

Please sign in to comment.