We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76c735c commit b584705Copy full SHA for b584705
source/js/DataController.js
@@ -432,13 +432,11 @@ DataController.prototype.resetRawData = function () {
432
rawData[y][x] = {
433
group: 1,
434
isCaption: true,
435
- value: lp.getPivotProperty(["showRowCaption"]) !== false
436
- ? (
437
- this.controller.CONFIG["caption"]
438
- || dimCaption
439
- || (data["info"] || {})["cubeName"]
440
- || ""
441
- ) : ""
+ value: lp.getPivotProperty(["showRowCaption"]) === false ? "" :
+ this.controller.CONFIG["caption"]
+ || dimCaption
+ || (data["info"] || {})["cubeName"]
+ || ""
442
};
443
applyHeaderStyle(rawData[y][x], false);
444
} else {
0 commit comments