Skip to content

Commit

Permalink
fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
evwilkin committed Feb 13, 2024
1 parent 3807a53 commit 9556d64
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions src/app/Inventory/Inventory.tsx
Original file line number Diff line number Diff line change
@@ -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';

Expand Down Expand Up @@ -151,7 +151,7 @@ export const FilterAttributeSearch: React.FunctionComponent = () => {

// Set up bulk selection menu
const bulkSelectMenuRef = React.useRef<HTMLDivElement>(null);
const bulkSelectToggleRef = React.useRef<any>(null);
const bulkSelectToggleRef = React.useRef<HTMLDivElement | HTMLButtonElement>(null);
const bulkSelectContainerRef = React.useRef<HTMLDivElement>(null);

const [isBulkSelectOpen, setIsBulkSelectOpen] = React.useState<boolean>(false);
Expand Down Expand Up @@ -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)}
/>,
],
}}
Expand Down

0 comments on commit 9556d64

Please sign in to comment.