Skip to content

Commit 95f54b8

Browse files
fix: make between default operator
1 parent 953f1b3 commit 95f54b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/src2/query/components/filter_utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ export function getOperatorOptions(filterType: FilterType) {
3131
options.push({ label: __('is not set'), value: 'is_not_set' })
3232
}
3333
if (filterType === 'Date') {
34+
options.push({ label: __('between'), value: 'between' })
3435
options.push({ label: __('equals'), value: '=' })
3536
options.push({ label: __('not equals'), value: '!=' })
3637
options.push({ label: __('greater than'), value: '>' })
3738
options.push({ label: __('greater than or equals'), value: '>=' })
3839
options.push({ label: __('less than'), value: '<' })
3940
options.push({ label: __('less than or equals'), value: '<=' })
40-
options.push({ label: __('between'), value: 'between' })
4141
options.push({ label: __('within'), value: 'within' })
4242
options.push({ label: __('is set'), value: 'is_set' })
4343
options.push({ label: __('is not set'), value: 'is_not_set' })

0 commit comments

Comments
 (0)