Skip to content

Commit 34ce195

Browse files
Fix bug Cannot filter policies by policy set (stolostron#3614)
The user cannot search and filter by policyset name Ref: https://issues.redhat.com/browse/ACM-12273 Signed-off-by: yiraeChristineKim <yikim@redhat.com>
1 parent f626e21 commit 34ce195

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

frontend/src/ui-components/AcmTable/AcmTable.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -767,7 +767,7 @@ export function AcmTable<T>(props: AcmTableProps<T>) {
767767
const fuse = new Fuse(tableItems, {
768768
ignoreLocation: true,
769769
threshold: threshold,
770-
keys: columns
770+
keys: selectedSortedCols
771771
.map((column, i) => (column.search ? `column-${i}` : undefined))
772772
.filter((value) => value !== undefined) as string[],
773773
// TODO use FuseOptionKeyObject to allow for weights
@@ -777,7 +777,7 @@ export function AcmTable<T>(props: AcmTableProps<T>) {
777777
} else {
778778
return { filtered: tableItems, filteredCount: totalCount }
779779
}
780-
}, [props.fuseThreshold, internalSearch, tableItems, columns, totalCount])
780+
}, [props.fuseThreshold, internalSearch, tableItems, totalCount, selectedSortedCols])
781781

782782
const { sorted, itemCount } = useMemo<{
783783
sorted: ITableItem<T>[]

0 commit comments

Comments
 (0)