bug fix on hide navigation bar for user with only one permission

This commit is contained in:
Eudes Inácio
2022-04-07 16:25:29 +01:00
parent 4d65dc9277
commit 18bff756f1
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -42,7 +42,7 @@ export class PermissionService {
let count = 0
for(let permission of (this.SessionStore.user.UserPermissions || [])) {
for(let permission of this.SessionStore.user.UserPermissions ) {
if (args.includes(permission)) {
count++;
}