@eqproject/eqp-dynamic-module 2.7.29 → 2.7.30

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.
@@ -4496,8 +4496,8 @@ class DbgetterComponent {
4496
4496
  }
4497
4497
  }
4498
4498
  reloadComponent() {
4499
- console.log("RELOAD COMPONENT CALLED", { field: this.field, record: this.record });
4500
- this.reloadDBG.emit({ field: this.field, record: this.record });
4499
+ console.log("RELOAD COMPONENT CALLED", this.record);
4500
+ this.reloadDBG.emit(this.record);
4501
4501
  }
4502
4502
  checkRelations() {
4503
4503
  this.relationsLoaded = this.relations.find(x => x.loaded) != null;
@@ -4816,8 +4816,7 @@ class DynamicModuleFieldFixComponent {
4816
4816
  }
4817
4817
  reloadDBGetter(ev) {
4818
4818
  console.log("RELOADING DB GETTER....");
4819
- this.field = ev.field;
4820
- this.record = ev.record;
4819
+ this.record = ev;
4821
4820
  this.field.InListView = false;
4822
4821
  setTimeout(() => { this.field.InListView = true; }, 1000);
4823
4822
  }