Commit 37b47adb authored by Igor Stuev's avatar Igor Stuev Committed by GitHub

fix table column filter for mud record (#2580)

parent aeb5635c
......@@ -21,9 +21,10 @@ const AddressMudRecordsKeyFilter = ({ value = '', handleFilterChange, columnName
return (
<TableColumnFilter
title={ title }
isFilled={ filterValue !== value }
isFilled={ Boolean(filterValue) }
onFilter={ onFilter }
onClose={ onClose }
isTouched={ filterValue !== value }
>
<FilterInput
initialValue={ value }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment