Skip to content

Commit 7b10e11

Browse files
fixed a mistake with test made in code
1 parent ee599c8 commit 7b10e11

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "LightPivotTable",
33
"author": "ZitRo",
4-
"version": "1.2.3",
4+
"version": "1.2.4",
55
"description": "A lightweight pivot table for MDX2JSON source for InterSystems Cache",
66
"main": "test/testServer.js",
77
"repository": {

source/js/DataController.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ DataController.prototype.resetRawData = function () {
440440
rawData[y][x] = {
441441
group: 1,
442442
isCaption: true,
443-
value: lp.getPivotProperty(["showRowCaption"]) === false ? "" :
443+
value: this.controller.getPivotProperty(["showRowCaption"]) === false ? "" :
444444
this.controller.CONFIG["caption"]
445445
|| dimCaption
446446
|| (data["info"] || {})["cubeName"]

0 commit comments

Comments
 (0)