@arsedizioni/ars-utils 18.4.33 → 18.4.34

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.
@@ -1762,7 +1762,8 @@ class ClipperUtils {
1762
1762
  * @returns : true if the model is readable
1763
1763
  */
1764
1764
  static isClipperModelReadable(model) {
1765
- return model !== ClipperModel.NormativaVigente &&
1765
+ return model !== ClipperModel.Unknown &&
1766
+ model !== ClipperModel.NormativaVigente &&
1766
1767
  model !== ClipperModel.Scadenze &&
1767
1768
  model !== ClipperModel.Segnalazioni;
1768
1769
  }