cat-qw-lib 0.28.3 → 0.28.4
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.
package/fesm2022/cat-qw-lib.mjs
CHANGED
|
@@ -563,6 +563,7 @@ class BaseControlComponent {
|
|
|
563
563
|
destroy$ = new Subject();
|
|
564
564
|
attributeDestroy$ = new Subject();
|
|
565
565
|
ngOnInit() {
|
|
566
|
+
console.log(this.attributeModel);
|
|
566
567
|
this.addToAttributeList();
|
|
567
568
|
this.baseQuery.getIsFormSubmitted()
|
|
568
569
|
.pipe(takeUntil(this.destroy$))
|
|
@@ -594,7 +595,9 @@ class BaseControlComponent {
|
|
|
594
595
|
}
|
|
595
596
|
}
|
|
596
597
|
addToAttributeList() {
|
|
598
|
+
console.log(this.attributeModel);
|
|
597
599
|
if (this.attributeModel) {
|
|
600
|
+
console.log(this.attributeModel);
|
|
598
601
|
// Ensure allAttributes is a mutable array
|
|
599
602
|
if (!Array.isArray(BaseControlComponent.allAttributes)) {
|
|
600
603
|
BaseControlComponent.allAttributes = [];
|