@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.
@@ -5025,8 +5025,8 @@ var easy_grid_EasyGrid = /** @class */ (function () {
5025
5025
  this.prevRowTotals = newRow;
5026
5026
  };
5027
5027
  EasyGrid.prototype.applyGroupColumnTemplate = function (template, value, count) {
5028
- var result = template.replace(/{{\s*GroupValue\s*}}/g, value ? "<span>" + value + "</span>" : '-');
5029
- result = result.replace(/{{\s*GroupCount\s*}}/g, count ? "<span>" + count + "</span>" : '-');
5028
+ var result = template.replace(/{{\s*GroupValue\s*}}/g, value ? "" + value : '-');
5029
+ result = result.replace(/{{\s*GroupCount\s*}}/g, count ? "" + count : '-');
5030
5030
  return result;
5031
5031
  };
5032
5032
  EasyGrid.prototype.renderTotalsRow = function (level, row) {