Skip to content

Commit 300471d

Browse files
authored
Merge pull request #22 from intersystems-ru/added-request-error-callback
removed whitespace
2 parents 644dcac + e4ead19 commit 300471d

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

package.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,9 @@
3434
],
3535
"dependencies": {
3636
"gulp-header": "^1.2.2"
37+
},
38+
"engines": {
39+
"node": "10.15.3",
40+
"npm": "6.9.0"
3741
}
3842
}

source/js/PivotView.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1393,7 +1393,7 @@ PivotView.prototype.renderRawData = function (data) {
13931393
formatContent(
13941394
rawData[y][x].value,
13951395
div,
1396-
(rowProps[y] && rowProps[y].format) || columnProps[x].format
1396+
(columnProps[x] && columnProps[x].format) || (rowProps[y] && rowProps[y].format)
13971397
);
13981398
if (
13991399
colorScale

0 commit comments

Comments
 (0)