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

This commit is contained in:
Jed Fox
2023-07-23 16:18:26 -04:00
committed by GitHub
parent c06b1badc4
commit f6c5769d47
2 changed files with 7 additions and 1 deletions

View File

@@ -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

View File

@@ -0,0 +1,6 @@
---
category: Bugfix
authors: [j-f1]
---
Remove non-functional “is between” filter operator