@flexem/fc-gui 3.0.0-alpha.72 → 3.0.0-alpha.73

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -105,6 +105,11 @@ export class AlarmElement extends ConditionalDisplayElement {
105
105
  if (!result.error) {
106
106
  this.totalCount = result.totalCount;
107
107
  this.currentAlarmList = result.items;
108
+ if (!result.items.length && result.totalCount) {
109
+ this.page = 0;
110
+ this.init();
111
+ return;
112
+ }
108
113
  this.alarmList = this.currentAlarmList.map(item => [
109
114
  item.name,
110
115
  item.message,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "main": "bundles/fc-gui.umd.js",
3
- "version": "3.0.0-alpha.72",
3
+ "version": "3.0.0-alpha.73",
4
4
  "module": "public_api.js",
5
5
  "typings": "public_api.d.ts",
6
6
  "license": "UNLICENSED",