From 17eb6adb5a690ad6bc9ac4f5e4afc1c3e135d641 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Wed, 16 Jun 2021 19:09:29 +0000 Subject: [PATCH] --- .../src/views/home-notify-subscription.vue | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/ayanova/src/views/home-notify-subscription.vue b/ayanova/src/views/home-notify-subscription.vue index bde670a7..b457c45f 100644 --- a/ayanova/src/views/home-notify-subscription.vue +++ b/ayanova/src/views/home-notify-subscription.vue @@ -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; } } },