Skip to content

Commit

Permalink
empty children returned by MDX2JSON wrong parse fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nikitaeverywhere committed Apr 2, 2015
1 parent d7ee4ed commit 5ccf32a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "LightPivotTable",
"author": "ZitRo",
"version": "1.0.0-beta.17",
"version": "1.0.0-beta.18",
"description": "A lightweight pivot table for MDX2JSON source for InterSystems Cache",
"main": "test/testServer.js",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion source/js/DataController.js
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ DataController.prototype.resetRawData = function () {

for (var i in c) {
cnum = groupNum;
if (c[i].children) {
if (c[i].children && c[i].children) {
groupNum++;
obj = {
group: cnum,
Expand Down

0 comments on commit 5ccf32a

Please sign in to comment.