@inspark/inspark-components 1.0.43 → 1.0.44

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.
@@ -2079,7 +2079,8 @@
2079
2079
  if (this.isGrouped) {
2080
2080
  Object.entries(this.groupInfo).forEach(function (_a) {
2081
2081
  var _b = __read(_a, 2), key = _b[0], value = _b[1];
2082
- return _this.groupInfo[key] = { isExpanded: true };
2082
+ var cacheFlag = (_this.groupInfo[key] || {}).isExpanded;
2083
+ _this.groupInfo[key] = { isExpanded: cacheFlag === undefined ? true : cacheFlag };
2083
2084
  });
2084
2085
  this.sortByGroup();
2085
2086
  if (this.dt && this.dt.filteredValue) {