Fix tests?

This commit is contained in:
Sam Rose 2024-07-10 09:14:15 +01:00
parent 102bd28980
commit b9c32b7068
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -348,7 +348,7 @@ export function fixupFilterArrays(filters: SearchFilters) {
if (typeof field[key] !== "string") {
field[key] = [field[key]]
} else {
field[key] = field[key].split(",").map(x => x.trim())
field[key] = field[key].split(",").map((x: string) => x.trim())
}
}
}