cat-qw-lib 0.34.1 → 0.34.2

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.
@@ -2630,11 +2630,12 @@ class QueueAdminFormComponent extends BaseFormComponent {
2630
2630
  if (id && id !== SHARED.ZERO.toString()) {
2631
2631
  this.service.getById(id).subscribe((res) => {
2632
2632
  if (res) {
2633
+ console.log(res);
2633
2634
  this.record = res;
2634
2635
  this.getApiProperties(res?.apiConfigId);
2635
- this.query = res.rules ? structuredClone(res.rules) : { condition: SHARED.AND, rules: [] };
2636
- this.fetchedProperties = res.properties;
2637
- this.setupQueryBuilderConfig(this.fetchedProperties);
2636
+ // this.query = res.rules ? structuredClone(res.rules) : { condition: SHARED.AND, rules: [] };
2637
+ // this.fetchedProperties = res.properties;
2638
+ // this.setupQueryBuilderConfig(this.fetchedProperties);
2638
2639
  }
2639
2640
  });
2640
2641
  }
@@ -2663,6 +2664,7 @@ class QueueAdminFormComponent extends BaseFormComponent {
2663
2664
  this.queueService.getbyApiPath(apiConfigId).subscribe({
2664
2665
  next: (res) => {
2665
2666
  if (res) {
2667
+ console.log(res);
2666
2668
  this.fetchedProperties = res.properties;
2667
2669
  const updatedPropertyList = res.properties.map((value) => ({ value }));
2668
2670
  this.apiPropertyList = updatedPropertyList;