@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.
- package/esm2020/lib/components/private/dbgetter/dbgetter.component.mjs +3 -3
- package/esm2020/lib/components/private/dynamic-module-field-fix/dynamic-module-field.component.mjs +2 -3
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +3 -4
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +3 -4
- package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/lib/components/private/dbgetter/dbgetter.component.d.ts +1 -1
- package/lib/components/private/dynamic-module-field-fix/dynamic-module-field.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -4496,8 +4496,8 @@ class DbgetterComponent {
|
|
|
4496
4496
|
}
|
|
4497
4497
|
}
|
|
4498
4498
|
reloadComponent() {
|
|
4499
|
-
console.log("RELOAD COMPONENT CALLED",
|
|
4500
|
-
this.reloadDBG.emit(
|
|
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.
|
|
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
|
}
|