fix(basic.gblib): ALLOW ROLE return people.

This commit is contained in:
Rodrigo Rodriguez 2024-02-25 21:00:23 -03:00
parent 0e7775cef6
commit 64cd2d6d11

View file

@ -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++;
}
}