Skip to content

Commit 8204d53

Browse files
isstuevcarlomigueldy
authored andcommitted
fix table column filter for mud record (blockscout#2580)
1 parent 626fa3a commit 8204d53

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ui/address/mud/AddressMudRecordsKeyFilterContent.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,10 @@ const AddressMudRecordsKeyFilter = ({ value = '', handleFilterChange, columnName
2121
return (
2222
<TableColumnFilter
2323
title={ title }
24-
isFilled={ filterValue !== value }
24+
isFilled={ Boolean(filterValue) }
2525
onFilter={ onFilter }
2626
onClose={ onClose }
27+
isTouched={ filterValue !== value }
2728
>
2829
<FilterInput
2930
initialValue={ value }

0 commit comments

Comments
 (0)