@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 +1 -1
- package/src/dr_pivottable.js +1 -1
- package/src/highcharts_renderer.js +230 -181
- package/src/pivottable.js +4 -17
- package/tests/highcharts_renderer.test.js +527 -0
- package/tests/mock/add-in-dynamic-ranges.json +133 -0
- package/tests/mock/add-in-functions.json +412 -0
- package/tests/mock/add-in-tables.json +347 -0
- package/tests/mock/widgets.json +411 -0
package/package.json
CHANGED
package/src/dr_pivottable.js
CHANGED
@@ -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
|
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
|
}
|