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