properly exclude 'blue'
This commit is contained in:
parent
92c768862c
commit
54ffb2c483
2 changed files with 6 additions and 2 deletions
|
@ -13,7 +13,9 @@ pandora.ui.correlationsDialog = function() {
|
|||
let count = 0
|
||||
pandora.api.find({
|
||||
keys: ['id'],
|
||||
query: {conditions: [], operator: ''},
|
||||
query: {conditions: [
|
||||
{key: 'id', operator: '!=', value: 'BA'} // "Blue"
|
||||
], operator: ''},
|
||||
range: [0, 1000000],
|
||||
sort: [{key: 'id', operator: '+'}]
|
||||
}, function(result) {
|
||||
|
|
|
@ -43,7 +43,9 @@ pandora.ui.manageKeywordsDialog = function() {
|
|||
let count = 0
|
||||
pandora.api.find({
|
||||
keys: ['id'],
|
||||
query: {conditions: [], operator: ''},
|
||||
query: {conditions: [
|
||||
{key: 'id', operator: '!=', value: 'BA'} // "Blue"
|
||||
], operator: ''},
|
||||
range: [0, 1000000],
|
||||
sort: [{key: 'id', operator: '+'}]
|
||||
}, function(result) {
|
||||
|
|
Loading…
Reference in a new issue