mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-09 03:32:54 -05:00
Exclude “isbetween” op from the filter UI (#1389)
This commit is contained in:
@@ -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
|
||||
|
||||
6
upcoming-release-notes/1389.md
Normal file
6
upcoming-release-notes/1389.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
category: Bugfix
|
||||
authors: [j-f1]
|
||||
---
|
||||
|
||||
Remove non-functional “is between” filter operator
|
||||
Reference in New Issue
Block a user