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
|
- 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.
|
- 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 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 user notification delivery log in OPS
|
||||||
- Added Customer 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
|
- 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 4123 fixed missing / wrong translation keys
|
||||||
- case 4124 implemented
|
- case 4124 implemented
|
||||||
- case 4125 fixed
|
- case 4125 fixed
|
||||||
|
- case 4127 fixed
|
||||||
|
|
||||||
|
|||||||
@@ -107,12 +107,16 @@ export default {
|
|||||||
eventDisplay += ` - ${info}`;
|
eventDisplay += ` - ${info}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
let typeDisplay = `[${window.$gz.enums.get(
|
let typeDisplay = "";
|
||||||
"coreview",
|
if (o.ayaType != 0) {
|
||||||
o.ayaType
|
typeDisplay = `[${window.$gz.enums.get(
|
||||||
)}]`;
|
"coreview",
|
||||||
if (typeDisplay == "[]") {
|
o.ayaType
|
||||||
typeDisplay = "";
|
)}]`;
|
||||||
|
|
||||||
|
if (typeDisplay == "[]") {
|
||||||
|
typeDisplay = "";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ret.push({
|
ret.push({
|
||||||
|
|||||||
Reference in New Issue
Block a user