fixed exception with 'undefined' value.
This commit is contained in:
parent
9a0b5b5d7d
commit
0873b84e68
@ -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 [];
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user