@eqproject/eqp-dynamic-module 2.6.23 → 2.6.24
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
|
@@ -10953,7 +10953,11 @@ class EqpDynamicModuleConfiguratorComponent {
|
|
|
10953
10953
|
if (this.importedModule != null) {
|
|
10954
10954
|
if (confirm("stai per sovrascrivere il modulo")) {
|
|
10955
10955
|
// chiamo il parse così da non creare un referenceBinding
|
|
10956
|
-
|
|
10956
|
+
var importedForm = JSON.parse(this.importedModule);
|
|
10957
|
+
importedForm.ID = "";
|
|
10958
|
+
importedForm.Name = importedForm.Name + " (Importato)";
|
|
10959
|
+
this.setName(importedForm.Name);
|
|
10960
|
+
this.setFormAndConfigure(importedForm);
|
|
10957
10961
|
this.closeImport();
|
|
10958
10962
|
}
|
|
10959
10963
|
}
|