Skip to content

Commit

Permalink
[Enhancement #467] Expect defined filter value.
Browse files Browse the repository at this point in the history
  • Loading branch information
ledsoft committed Jun 18, 2024
1 parent 5b362f0 commit 81f284d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/component/misc/table/TextBasedFilter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ function textContains(text: string, toContain: string) {
}

export function multilingualTextContainsFilterFactory(lang: string) {
return (rows: any[], id: string, filterValue?: string) => {
return (rows: any[], id: string, filterValue: string) => {
const normalizedFilterValue = Utils.normalizeString(
String(filterValue)
).toLowerCase();
Expand Down

0 comments on commit 81f284d

Please sign in to comment.