cat-qw-lib 0.41.18 → 0.41.19

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.
@@ -3433,12 +3433,16 @@ class DdAdminItemFormComponent {
3433
3433
  }
3434
3434
  }
3435
3435
  loadPropertyOption() {
3436
+ console.log("1");
3436
3437
  this.subscriptions.add(this.dictionaryQuery.selectPropertyData().subscribe((res) => {
3438
+ console.log("2");
3437
3439
  if (res) {
3440
+ console.log("3", res);
3438
3441
  if (res?.properties?.length) {
3439
3442
  res.properties.forEach((property) => {
3440
3443
  this.propertyOptions.push({ label: `${res.name}.${property}`, value: `${res.name}.${property}` });
3441
3444
  });
3445
+ console.log("3", this.propertyOptions);
3442
3446
  }
3443
3447
  if (res?.childApis?.length) {
3444
3448
  res.childApis.forEach((childApi) => {
@@ -3446,6 +3450,7 @@ class DdAdminItemFormComponent {
3446
3450
  this.propertyOptions.push({ label: `${res.name}.${childApi.name}.${property}`, value: `${res.name}.${childApi.name}.${property}` });
3447
3451
  });
3448
3452
  });
3453
+ console.log("4", this.propertyOptions);
3449
3454
  }
3450
3455
  }
3451
3456
  }));