Skip to content

Commit

Permalink
Merge pull request #22 from intersystems-ru/added-request-error-callback
Browse files Browse the repository at this point in the history
removed whitespace
  • Loading branch information
gnibeda authored Nov 10, 2022
2 parents 644dcac + e4ead19 commit 300471d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,9 @@
],
"dependencies": {
"gulp-header": "^1.2.2"
},
"engines": {
"node": "10.15.3",
"npm": "6.9.0"
}
}
2 changes: 1 addition & 1 deletion source/js/PivotView.js
Original file line number Diff line number Diff line change
Expand Up @@ -1393,7 +1393,7 @@ PivotView.prototype.renderRawData = function (data) {
formatContent(
rawData[y][x].value,
div,
(rowProps[y] && rowProps[y].format) || columnProps[x].format
(columnProps[x] && columnProps[x].format) || (rowProps[y] && rowProps[y].format)
);
if (
colorScale
Expand Down

0 comments on commit 300471d

Please sign in to comment.