diff --git a/src/app/Inventory/Inventory.tsx b/src/app/Inventory/Inventory.tsx index b6dfaaa6..03c34ef2 100644 --- a/src/app/Inventory/Inventory.tsx +++ b/src/app/Inventory/Inventory.tsx @@ -1,29 +1,29 @@ import React from 'react'; import { - SearchInput, - Toolbar, - ToolbarContent, - ToolbarItem, + Badge, + Bullseye, + Button, + EmptyState, + EmptyStateActions, + EmptyStateBody, + EmptyStateFooter, Menu, MenuContent, - MenuList, MenuItem, + MenuList, MenuToggle, MenuToggleCheckbox, - Popper, Pagination, - EmptyState, - EmptyStateFooter, - EmptyStateBody, - Button, - Bullseye, - Badge, - ToolbarGroup, + Popper, + SearchInput, + Toolbar, + ToolbarContent, ToolbarFilter, + ToolbarGroup, + ToolbarItem, ToolbarToggleGroup, - EmptyStateActions, } from '@patternfly/react-core'; -import { Table, Thead, Tr, Th, Tbody, Td } from '@patternfly/react-table'; +import { Table, Tbody, Td, Th, Thead, Tr } from '@patternfly/react-table'; import SearchIcon from '@patternfly/react-icons/dist/esm/icons/search-icon'; import FilterIcon from '@patternfly/react-icons/dist/esm/icons/filter-icon'; @@ -151,7 +151,7 @@ export const FilterAttributeSearch: React.FunctionComponent = () => { // Set up bulk selection menu const bulkSelectMenuRef = React.useRef(null); - const bulkSelectToggleRef = React.useRef(null); + const bulkSelectToggleRef = React.useRef(null); const bulkSelectContainerRef = React.useRef(null); const [isBulkSelectOpen, setIsBulkSelectOpen] = React.useState(false); @@ -216,7 +216,7 @@ export const FilterAttributeSearch: React.FunctionComponent = () => { key="attribute-search-input-bulk-select" aria-label="Select all" isChecked={menuToggleCheckmark} - onChange={(checked, _event) => selectAllRepos(checked)} + onChange={(checked) => selectAllRepos(checked)} />, ], }}