@easydata/crud 1.4.11 → 1.4.12

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.
@@ -8123,8 +8123,8 @@ var EasyGrid = /** @class */ (function () {
8123
8123
  this.prevRowTotals = newRow;
8124
8124
  };
8125
8125
  EasyGrid.prototype.applyGroupColumnTemplate = function (template, value, count) {
8126
- var result = template.replace(/{{\s*GroupValue\s*}}/g, value ? "<span>" + value + "</span>" : '-');
8127
- result = result.replace(/{{\s*GroupCount\s*}}/g, count ? "<span>" + count + "</span>" : '-');
8126
+ var result = template.replace(/{{\s*GroupValue\s*}}/g, value ? "" + value : '-');
8127
+ result = result.replace(/{{\s*GroupCount\s*}}/g, count ? "" + count : '-');
8128
8128
  return result;
8129
8129
  };
8130
8130
  EasyGrid.prototype.renderTotalsRow = function (level, row) {