@eqproject/eqp-dynamic-module 2.0.8 → 2.0.9
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 +5 -5
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +4 -4
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +4 -4
- package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -4752,10 +4752,10 @@ class EqpDynamicModuleConfiguratorComponent {
|
|
|
4752
4752
|
if (field.FieldType != FieldTypeEnum["Form di dettaglio"]) {
|
|
4753
4753
|
// ricreo l'oggetto passando per un json
|
|
4754
4754
|
let cloneField = JSON.parse(JSON.stringify(field));
|
|
4755
|
-
cloneField
|
|
4756
|
-
cloneField
|
|
4757
|
-
|
|
4758
|
-
|
|
4755
|
+
cloneField.Label = field["Label"] + "Copy";
|
|
4756
|
+
cloneField.OrdinalPosition = this.form.Fields.length + 1;
|
|
4757
|
+
this.selectedField = new BaseField();
|
|
4758
|
+
this.indexSelectedField = null;
|
|
4759
4759
|
this.onSaveField(cloneField);
|
|
4760
4760
|
}
|
|
4761
4761
|
else {
|