cat-qw-lib 0.29.2 → 0.29.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.
@@ -576,14 +576,14 @@ class BaseControlComponent {
576
576
  this.baseStore.setIsFormSubmitted(false);
577
577
  }
578
578
  });
579
- this.baseQuery.getAttributeModelList()
580
- .pipe(takeUntil(this.attributeDestroy$))
581
- .subscribe((res) => {
582
- console.log(res);
583
- if (res !== undefined && res !== null) {
584
- BaseControlComponent.allAttributes = res;
585
- }
586
- });
579
+ // this.baseQuery.getAttributeModelList()
580
+ // .pipe(takeUntil(this.attributeDestroy$))
581
+ // .subscribe((res) => {
582
+ // console.log(res);
583
+ // if(res !== undefined && res !== null){
584
+ // BaseControlComponent.allAttributes = res;
585
+ // }
586
+ // })
587
587
  }
588
588
  ngOnChanges() {
589
589
  if (this.store) {
@@ -1223,6 +1223,7 @@ class BaseFormComponent {
1223
1223
  this.baseQuery.getAttributeModelList()
1224
1224
  .pipe(takeUntil(this.destroy$))
1225
1225
  .subscribe((attributeModels) => {
1226
+ console.log(attributeModels);
1226
1227
  attributeModels.forEach(attr => {
1227
1228
  const handleCheckAndAddMissingField = (value) => {
1228
1229
  if (attr.isRequired &&