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;
|
break;
|
||||||
case 'not in':
|
case 'not in':
|
||||||
if (v1.indexOf(v2) === -1) {
|
if (v2.indexOf(v1) === -1) {
|
||||||
filterAcceptCount++;
|
filterAcceptCount++;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
@ -1269,7 +1269,7 @@ export class SystemKeywords {
|
||||||
filterAcceptCount++;
|
filterAcceptCount++;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (v1.indexOf(v2) > -1) {
|
if (v2.indexOf(v1) > -1) {
|
||||||
filterAcceptCount++;
|
filterAcceptCount++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue