diff --git a/client/src/utils.js b/client/src/utils.js index 957b4b811e..08cd2305f3 100644 --- a/client/src/utils.js +++ b/client/src/utils.js @@ -45,6 +45,8 @@ Espo.define('utils', [], function () { } else { hasAccess = acl.check(item.aclScope, item.acl); } + } else if (item.aclScope) { + hasAccess = acl.checkScope(item.aclScope); } return hasAccess; },