Skip to content
This repository was archived by the owner on Oct 9, 2025. It is now read-only.

Commit 4cd2ed0

Browse files
awaliassoedirgo
authored andcommitted
fix: replace % with * in or filter
1 parent d15298f commit 4cd2ed0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/utils/Filters.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -495,5 +495,6 @@ export function _adj(columnName, filterRange) {
495495
* 'or=(id.gt.20,and(name.eq.New Zealand,name.eq.France))'
496496
*/
497497
export function _or(filters) {
498-
return `or=(${filters})`
498+
let filtersEnriched = filters.replace(/%/g, '*')
499+
return `or=(${filtersEnriched})`
499500
}

0 commit comments

Comments
 (0)