diff --git a/src/components/Table/utils.tsx b/src/components/Table/utils.tsx index cec5e78f..900666f1 100644 --- a/src/components/Table/utils.tsx +++ b/src/components/Table/utils.tsx @@ -22,7 +22,7 @@ export function populateTableColumnsWithFiltersAndSorts( const updatedColumn: ColumnType> = { ...column, - filtered: !_.isUndefined(filter?.value) && !_.isNull(filter?.value) && filter?.value === '', + filtered: !_.isUndefined(filter?.value) && !_.isNull(filter?.value) && filter?.value !== '', filterDropdown: filter ? (props: FilterDropdownProps) => : undefined,