fix(basic.gblib): ALLOW ROLE return people.
This commit is contained in:
parent
0e7775cef6
commit
64cd2d6d11
1 changed files with 2 additions and 2 deletions
|
@ -1259,7 +1259,7 @@ export class SystemKeywords {
|
|||
}
|
||||
break;
|
||||
case 'not in':
|
||||
if (v1.indexOf(v2) === -1) {
|
||||
if (v2.indexOf(v1) === -1) {
|
||||
filterAcceptCount++;
|
||||
}
|
||||
break;
|
||||
|
@ -1269,7 +1269,7 @@ export class SystemKeywords {
|
|||
filterAcceptCount++;
|
||||
}
|
||||
} else {
|
||||
if (v1.indexOf(v2) > -1) {
|
||||
if (v2.indexOf(v1) > -1) {
|
||||
filterAcceptCount++;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue