@eqproject/eqp-dynamic-module 2.6.23 → 2.6.25
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/exported/eqp-dynamic-module-configurator/eqp-dynamic-module-configurator.component.mjs +6 -2
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +5 -1
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +5 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -10984,7 +10984,11 @@ class EqpDynamicModuleConfiguratorComponent {
|
|
|
10984
10984
|
if (this.importedModule != null) {
|
|
10985
10985
|
if (confirm("stai per sovrascrivere il modulo")) {
|
|
10986
10986
|
// chiamo il parse così da non creare un referenceBinding
|
|
10987
|
-
|
|
10987
|
+
var importedForm = JSON.parse(this.importedModule);
|
|
10988
|
+
importedForm.ID = "";
|
|
10989
|
+
importedForm.Name = importedForm.Name + " (Importato)";
|
|
10990
|
+
this.setFormAndConfigure(importedForm);
|
|
10991
|
+
this.setName(importedForm.Name);
|
|
10988
10992
|
this.closeImport();
|
|
10989
10993
|
}
|
|
10990
10994
|
}
|