This commit is contained in:
2021-06-16 19:09:29 +00:00
parent a05e5e3871
commit 17eb6adb5a

View File

@@ -400,13 +400,18 @@ export default {
}
},
showTags() {
switch (this.obj.eventType) {
case 27: //General notification
case 20: //backup status
case 31: //workordercreatedforcustomer customer notification, no tags
return false;
default:
return true;
if (!window.$gz.store.state.isCustomerUser) {
//customers NEVER see tags anywhere, that's private information and they do not use or require it
switch (this.obj.eventType) {
case 27: //General notification
case 20: //backup status
case 31: //workordercreatedforcustomer customer notification, no tags
return false;
default:
return true;
}
} else {
return false;
}
}
},