diff --git a/ayanova/devdocs/todo.txt b/ayanova/devdocs/todo.txt index 9585b016..e8ddac7c 100644 --- a/ayanova/devdocs/todo.txt +++ b/ayanova/devdocs/todo.txt @@ -811,7 +811,7 @@ BUILD 8.0.0-beta.1-rc4 CHANGES OF NOTE - subscriptions lists fixed bug where no type selected would display "[undefined]" in data list, now displays nothing - fixed tag control title which was too high and smaller chips so that tag controls are same height as other controls and can show more in a smaller space. - added missing "duration" field description to notify-subscription docs -- Added CustomerNotification feature, exposed as Customer notifications in UI Customers section, see corresponding help doc for details +- Added CustomerNotification feature, exposed as Customer notifications in UI Customers section, see corresponding help doc for details (case 4126) - Added user notification delivery log in OPS - Added Customer notification delivery log in OPS - Updated notification types doc page, was missing a few, also sorted alphabetically was random chaos order @@ -823,3 +823,5 @@ BUILD 8.0.0-beta.1-rc4 CHANGES OF NOTE - case 4123 fixed missing / wrong translation keys - case 4124 implemented - case 4125 fixed +- case 4127 fixed + diff --git a/ayanova/src/views/home-notify-subscriptions.vue b/ayanova/src/views/home-notify-subscriptions.vue index 625e9f0d..6101fa46 100644 --- a/ayanova/src/views/home-notify-subscriptions.vue +++ b/ayanova/src/views/home-notify-subscriptions.vue @@ -107,12 +107,16 @@ export default { eventDisplay += ` - ${info}`; } - let typeDisplay = `[${window.$gz.enums.get( - "coreview", - o.ayaType - )}]`; - if (typeDisplay == "[]") { - typeDisplay = ""; + let typeDisplay = ""; + if (o.ayaType != 0) { + typeDisplay = `[${window.$gz.enums.get( + "coreview", + o.ayaType + )}]`; + + if (typeDisplay == "[]") { + typeDisplay = ""; + } } ret.push({