File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
frontend/src2/query/components Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff 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' } )
You can’t perform that action at this time.
0 commit comments