Skip to content

removed whitespace #22

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 10, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "LightPivotTable",
"author": "ZitRo",
"version": "1.8.13",
"version": "1.8.14",
"description": "A lightweight pivot table for MDX2JSON source for InterSystems Cache",
"main": "test/testServer.js",
"repository": {
Expand Down 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