@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.
@@ -15378,6 +15378,9 @@ class EqpDynamicModuleConfiguratorComponent {
15378
15378
  display: "Sezioni",
15379
15379
  value: (el) => {
15380
15380
  var finalText = "";
15381
+ if (el.ShowIn == null || el.ShowIn.length == 0) {
15382
+ return "Nessuna";
15383
+ }
15381
15384
  el.ShowIn.forEach(element => {
15382
15385
  finalText += ActionFlagEnum[element] + " / ";
15383
15386
  });