We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dad600b commit 7da5b5cCopy full SHA for 7da5b5c
libs/remix-ui/grid-view/src/lib/remix-ui-grid-cell.tsx
@@ -48,10 +48,10 @@ export const RemixUIGridCell = (props: RemixUIGridCellProps) => {
48
if (filterCon.filter != '')
49
enabled = (props.title?.toLowerCase().includes(filterCon.filter?.toLowerCase()) ||
50
props.searchKeywords?.map(keyword => keyword.toLowerCase()).some(searchKeyword => searchKeyword.toLowerCase().includes(filterCon.filter.toLocaleLowerCase())))
51
-
+
52
setAnyEnabled(enabled)
53
}, [filterCon, props.tagList])
54
55
/*const listenOnExpand = (key) => {
56
if (key === props.key) setExpand(props.toggleExpandView)
57
console.log('expand ----> ', key)
0 commit comments