bugbug - was checking against bizadminfull role which no longer exists and sb just bizadmin, checked for any other cases similar using full but found none beyond what was fixed here.

This commit is contained in:
2022-08-17 21:12:44 +00:00
parent ed23e20853
commit c55e8f0cbd
5 changed files with 9 additions and 4 deletions

View File

@@ -483,7 +483,7 @@ export default {
data() {
return {
canEditSerial: window.$gz.role.hasRole([
window.$gz.role.AUTHORIZATION_ROLES.BizAdminFull
window.$gz.role.AUTHORIZATION_ROLES.BizAdmin
])
};
},

View File

@@ -496,7 +496,7 @@ export default {
data() {
return {
canEditSerial: window.$gz.role.hasRole([
window.$gz.role.AUTHORIZATION_ROLES.BizAdminFull
window.$gz.role.AUTHORIZATION_ROLES.BizAdmin
])
};
},

View File

@@ -474,7 +474,7 @@ export default {
data() {
return {
canEditSerial: window.$gz.role.hasRole([
window.$gz.role.AUTHORIZATION_ROLES.BizAdminFull
window.$gz.role.AUTHORIZATION_ROLES.BizAdmin
])
};
},