File tree Expand file tree Collapse file tree 1 file changed +1
-7
lines changed Expand file tree Collapse file tree 1 file changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,6 @@ var extendFlat = require('../../lib/extend').extendFlat;
19
19
var filterOps = require ( '../../constants/filter_ops' ) ;
20
20
var COMPARISON_OPS2 = filterOps . COMPARISON_OPS2 ;
21
21
var INTERVAL_OPS = filterOps . INTERVAL_OPS ;
22
- var SET_OPS = filterOps . SET_OPS ;
23
22
24
23
var scatterLineAttrs = scatterAttrs . line ;
25
24
@@ -186,7 +185,7 @@ module.exports = extendFlat({
186
185
} ,
187
186
operation : {
188
187
valType : 'enumerated' ,
189
- values : [ ] . concat ( COMPARISON_OPS2 ) . concat ( INTERVAL_OPS ) . concat ( SET_OPS ) ,
188
+ values : [ ] . concat ( COMPARISON_OPS2 ) . concat ( INTERVAL_OPS ) ,
190
189
role : 'info' ,
191
190
dflt : '=' ,
192
191
editType : 'calc' ,
@@ -231,11 +230,6 @@ module.exports = extendFlat({
231
230
'(' + INTERVAL_OPS + ')' ,
232
231
'*value* is expected to be 2-item array where the first item' ,
233
232
'is the lower bound and the second item is the upper bound.' ,
234
-
235
- 'When `operation`, is set to one of the set value' ,
236
- '(' + SET_OPS + ')' ,
237
- '*value* is expected to be an array with as many items as' ,
238
- 'the desired set elements.'
239
233
] . join ( ' ' )
240
234
} ,
241
235
editType : 'calc' ,
You can’t perform that action at this time.
0 commit comments