@esfaenza/es-table 11.2.22-beta30 → 11.2.22-beta31

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.
@@ -2131,9 +2131,10 @@
2131
2131
  }
2132
2132
  else {
2133
2133
  var ret = this.est.SecondarySource ? this.est.View.items2 : this.est.TertiarySource ? this.est.View.items3 : this.est.View.items;
2134
+ if (!ret)
2135
+ ret = [];
2134
2136
  // Setto variabile interna per specificare che questo è un elemento normale, non un gruppo o altro
2135
- if (ret)
2136
- ret.forEach(function (itm) { itm._item = true; });
2137
+ ret.forEach(function (itm) { itm._item = true; });
2137
2138
  return ret;
2138
2139
  }
2139
2140
  };