@datarailsshared/dr_renderer 1.2.89 → 1.2.90

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@datarailsshared/dr_renderer",
3
- "version": "1.2.89",
3
+ "version": "1.2.90",
4
4
  "description": "DataRails charts and tables renderer",
5
5
  "keywords": [
6
6
  "datarails",
@@ -259,8 +259,9 @@ let initDRPivotTable = function($, window, document) {
259
259
 
260
260
  DRPivotData.prototype.getAggregator = function(rowKey, colKey) {
261
261
  var agg, flatColKey, flatRowKey;
262
- flatRowKey = rowKey.join(delim);
263
- flatColKey = colKey.join(delim);
262
+ let hebrewMarkRegex = new RegExp(String.fromCharCode(8206), 'g');
263
+ flatRowKey = rowKey.join(delim).replace(hebrewMarkRegex, '');
264
+ flatColKey = colKey.join(delim).replace(hebrewMarkRegex, '');
264
265
  if (rowKey.length === 0 && colKey.length === 0) {
265
266
  agg = this.allTotal;
266
267
  } else if (rowKey.length === 0) {