Skip to content

Commit

Permalink
feat(pci.private-registry): fix filter
Browse files Browse the repository at this point in the history
ref: TAPC-584
Signed-off-by: Pierre-Philippe <[email protected]>
  • Loading branch information
Pierre-Philippe committed Dec 17, 2024
1 parent d93abbd commit 70e051e
Showing 1 changed file with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -163,12 +163,7 @@ const Filters = ({ createNewRow }: { createNewRow: () => void }) => {
},
]}
onAddFilter={(addedFilter, column) => {
handleAddFilter(
addedFilter.value,
column.id,
column.label,
FilterComparator.IsEqual,
);
handleAddFilter(addedFilter.value, column.id, column.label);
filterPopoverRef.current?.closeSurface();
}}
/>
Expand Down

0 comments on commit 70e051e

Please sign in to comment.