@datarailsshared/dr_renderer 1.2.322-dragons → 1.2.324

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.322-dragons",
3
+ "version": "1.2.324",
4
4
  "description": "DataRails charts and tables renderer",
5
5
  "keywords": [
6
6
  "datarails",
@@ -198,7 +198,7 @@ let initDRPivotTable = function($, window, document) {
198
198
  let flatRowKey = rowKey.join(delim);
199
199
  let flatColKey = colKey.join(delim);
200
200
 
201
- if (this.keysLength === rowKey.length + colKey.length && !this.isKeysSortingDoneOnBackendSide) {
201
+ if (this.keysLength === rowKey.length + colKey.length) {
202
202
  if (!this.rowKeys.some(rKey => rKey.join(delim) === flatRowKey)) {
203
203
  this.rowKeys.push(rowKey);
204
204
  }