Client: Fixed UI not handle empty filters properly

This commit is contained in:
Donkie
2023-09-20 20:56:29 +02:00
parent 556b80a5ce
commit f967aef2cb
2 changed files with 12 additions and 39 deletions

View File

@@ -130,7 +130,7 @@ export function FilteredQueryColumn<Obj>(props: FilteredQueryColumnProps<Obj>) {
}
filters.push({
text: "<empty>",
value: "",
value: "<empty>",
});
const typedFilters = typeFilters<Obj>(props.tableState.filters);