Skip to content

Commit 7da5b5c

Browse files
committed
linting fix
1 parent dad600b commit 7da5b5c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libs/remix-ui/grid-view/src/lib/remix-ui-grid-cell.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@ export const RemixUIGridCell = (props: RemixUIGridCellProps) => {
4848
if (filterCon.filter != '')
4949
enabled = (props.title?.toLowerCase().includes(filterCon.filter?.toLowerCase()) ||
5050
props.searchKeywords?.map(keyword => keyword.toLowerCase()).some(searchKeyword => searchKeyword.toLowerCase().includes(filterCon.filter.toLocaleLowerCase())))
51-
51+
5252
setAnyEnabled(enabled)
5353
}, [filterCon, props.tagList])
54-
54+
5555
/*const listenOnExpand = (key) => {
5656
if (key === props.key) setExpand(props.toggleExpandView)
5757
console.log('expand ----> ', key)

0 commit comments

Comments
 (0)