@eqproject/eqp-dynamic-module 2.10.57 → 2.10.58
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 +4 -1
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +3 -0
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +3 -0
- package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -15324,6 +15324,9 @@ class EqpDynamicModuleConfiguratorComponent {
|
|
|
15324
15324
|
display: "Sezioni",
|
|
15325
15325
|
value: (el) => {
|
|
15326
15326
|
var finalText = "";
|
|
15327
|
+
if (el.ShowIn == null || el.ShowIn.length == 0) {
|
|
15328
|
+
return "Nessuna";
|
|
15329
|
+
}
|
|
15327
15330
|
el.ShowIn.forEach(element => {
|
|
15328
15331
|
finalText += ActionFlagEnum[element] + " / ";
|
|
15329
15332
|
});
|