new(basic.gblib): new TOLIST and FIND now works with hour intervals.
This commit is contained in:
parent
452eb608a4
commit
6eb1f4d2aa
1 changed files with 2 additions and 2 deletions
|
@ -411,12 +411,12 @@ export class SystemKeywords {
|
|||
}
|
||||
break;
|
||||
case 'not in':
|
||||
if (filter.value.indexOf(result)) {
|
||||
if (filter.value.indexOf(result) === -1) {
|
||||
filterAcceptCount++;
|
||||
}
|
||||
break;
|
||||
case 'in':
|
||||
if (!filter.value.indexOf(result)) {
|
||||
if (filter.value.indexOf(result) !== -1) {
|
||||
filterAcceptCount++;
|
||||
}
|
||||
break;
|
||||
|
|
Loading…
Add table
Reference in a new issue