File tree Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " LightPivotTable" ,
3
3
"author" : " ZitRo" ,
4
- "version" : " 1.2.1 " ,
4
+ "version" : " 1.2.2 " ,
5
5
"description" : " A lightweight pivot table for MDX2JSON source for InterSystems Cache" ,
6
6
"main" : " test/testServer.js" ,
7
7
"repository" : {
Original file line number Diff line number Diff line change @@ -432,10 +432,13 @@ DataController.prototype.resetRawData = function () {
432
432
rawData [ y ] [ x ] = {
433
433
group : 1 ,
434
434
isCaption : true ,
435
- value : this . controller . CONFIG [ "caption" ]
436
- || dimCaption
437
- || ( data [ "info" ] || { } ) [ "cubeName" ]
438
- || ""
435
+ value : lp . getPivotProperty ( [ "showRowCaption" ] ) !== false
436
+ ? (
437
+ this . controller . CONFIG [ "caption" ]
438
+ || dimCaption
439
+ || ( data [ "info" ] || { } ) [ "cubeName" ]
440
+ || ""
441
+ ) : ""
439
442
} ;
440
443
applyHeaderStyle ( rawData [ y ] [ x ] , false ) ;
441
444
} else {
You can’t perform that action at this time.
0 commit comments