diff --git a/ayanova/src/views/customer-notify-subscriptions.vue b/ayanova/src/views/customer-notify-subscriptions.vue index 643b9da0..3ae5a4c1 100644 --- a/ayanova/src/views/customer-notify-subscriptions.vue +++ b/ayanova/src/views/customer-notify-subscriptions.vue @@ -108,17 +108,10 @@ export default { if (info && info != "") { eventDisplay += ` - ${info}`; } - let typeDisplay = `[${window.$gz.enums.get( - "coreview", - o.ayaType - )}]`; - if (typeDisplay == "[]") { - typeDisplay = ""; - } + ret.push({ id: o.id, eventType: eventDisplay, - ayaType: typeDisplay, customerTags: window.$gz.util.formatTags(o.customerTags), tags: window.$gz.util.formatTags(o.tags) }); @@ -228,8 +221,6 @@ async function fetchTranslatedText() { // async function cacheEnums() { await window.$gz.enums.fetchEnumList("NotifyEventType"); - - await window.$gz.enums.fetchEnumList("coreview"); } ////////////////////// @@ -240,7 +231,6 @@ async function createTableHeaders(vm) { { text: vm.$ay.t("ID"), value: "id" }, { text: vm.$ay.t("NotifyEventType"), value: "eventType" }, { text: vm.$ay.t("CustomerTags"), value: "customerTags" }, - { text: vm.$ay.t("AyaType"), value: "ayaType" }, { text: vm.$ay.t("Tags"), value: "tags" } ]; }