diff --git a/client/src/app/pages/search/search.tsx b/client/src/app/pages/search/search.tsx index 774aae54..23f8b1f4 100644 --- a/client/src/app/pages/search/search.tsx +++ b/client/src/app/pages/search/search.tsx @@ -10,6 +10,10 @@ import { Tabs, Text, TextContent, + Toolbar, + ToolbarContent, + ToolbarGroup, + ToolbarItem, SearchInput, } from "@patternfly/react-core"; import HelpIcon from "@patternfly/react-icons/dist/esm/icons/help-icon"; @@ -55,57 +59,77 @@ export const Search: React.FC = () => { return ( <> - - Search - - onChangeSearch(value)} - onClear={onClearSearch} - resultsCount={resultsCount} - /> + + + + + Search + + + + + + onChangeSearch(value)} + onClear={onClearSearch} + resultsCount={resultsCount} + /> + + + + + - - Products} - aria-label="Products" + + - - - SBOMs} - actions={ - <> - - - - {sbomPopover(ref)} - - } - > - - - Vulnerabilities}> - - - Packages}> - - - Advisories}> - - - Importers}> - - - + Products} + aria-label="Products" + > + + + SBOMs} + actions={ + <> + + + + {sbomPopover(ref)} + + } + > + + + Vulnerabilities} + > + + + Packages}> + + + Advisories}> + + + Importers}> + + + + ); };