fixed exception with 'undefined' value.

This commit is contained in:
Annika Hannig 2023-05-12 13:20:12 +02:00
parent 9a0b5b5d7d
commit 0873b84e68

View File

@ -161,6 +161,9 @@ const mergeFilters = (a, ...other) => {
* Filter Query Decoding * Filter Query Decoding
*/ */
const decodeStringList = (value) => { const decodeStringList = (value) => {
if (!value) {
return [];
}
if (value === "") { if (value === "") {
return []; return [];
} }