Skip to content
Snippets Groups Projects
Unverified Commit f6c5769d authored by Jed Fox's avatar Jed Fox Committed by GitHub
Browse files

Exclude “isbetween” op from the filter UI (#1389)

parent c06b1bad
No related branches found
No related tags found
No related merge requests found
......@@ -153,7 +153,7 @@ function ConfigureField({
}, [op]);
let type = FIELD_TYPES.get(field);
let ops = TYPE_INFO[type].ops;
let ops = TYPE_INFO[type].ops.filter(op => op !== 'isbetween');
// Month and year fields are quite hacky right now! Figure out how
// to clean this up later
......
---
category: Bugfix
authors: [j-f1]
---
Remove non-functional “is between” filter operator
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment