@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.
@@ -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
  });