Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: nikitaeverywhere/LightPivotTable
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: objectscript/LightPivotTable
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Nov 10, 2022

  1. removed whitespace

    agnybida committed Nov 10, 2022
    Copy the full SHA
    e4ead19 View commit details
  2. Copy the full SHA
    300471d View commit details
Showing with 5 additions and 1 deletion.
  1. +4 −0 package.json
  2. +1 −1 source/js/PivotView.js
4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -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
@@ -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