case 4127
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
@@ -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({
|
||||
|
||||
Reference in New Issue
Block a user