cat-qw-lib 0.63.17 → 0.63.18

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.
@@ -4426,9 +4426,9 @@ class WidgetBodyComponent {
4426
4426
  }
4427
4427
  return { ...itemStyleObject };
4428
4428
  });
4429
- console.log(this.widgetItemStyle);
4430
- console.log('Has Background Color:', this.hasBackgroundColor);
4431
- this.isConfirmed = this.widget.dataItems?.map(item => item.style.isConfirmed === 'true' ? true : false) || [];
4429
+ this.isConfirmed = (this.widget.dataItems)
4430
+ .filter(item => item.style != null)
4431
+ .map(item => item.style.isConfirmed === 'true' ? true : false) || [];
4432
4432
  }
4433
4433
  }
4434
4434
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.4", ngImport: i0, type: WidgetBodyComponent, deps: [{ token: StyleBuilderService }], target: i0.ɵɵFactoryTarget.Component });