Skip to content

Commit

Permalink
fixed a mistake with test made in code
Browse files Browse the repository at this point in the history
  • Loading branch information
nikitaeverywhere committed Jun 30, 2015
1 parent ee599c8 commit 7b10e11
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "LightPivotTable",
"author": "ZitRo",
"version": "1.2.3",
"version": "1.2.4",
"description": "A lightweight pivot table for MDX2JSON source for InterSystems Cache",
"main": "test/testServer.js",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion source/js/DataController.js
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ DataController.prototype.resetRawData = function () {
rawData[y][x] = {
group: 1,
isCaption: true,
value: lp.getPivotProperty(["showRowCaption"]) === false ? "" :
value: this.controller.getPivotProperty(["showRowCaption"]) === false ? "" :
this.controller.CONFIG["caption"]
|| dimCaption
|| (data["info"] || {})["cubeName"]
Expand Down

0 comments on commit 7b10e11

Please sign in to comment.