You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At pivot.js in function init() if a json is passed, it goes to function processJSON(input) and makes a JSON.parse(input), so if a json like [[header1,...headerN],[contentA1..contentA2]..] is passed it breaks. Yet, if a [{header1:contentA1,..headerN:contentA1},{..},..] is passed it succeeds, but then it doesn't get processed on function processHeaderRow(row) because it uses rows like [h1..hn]. Function processRow(row, header, pseudoFields) has the same issue.
The text was updated successfully, but these errors were encountered:
At pivot.js in function init() if a json is passed, it goes to function processJSON(input) and makes a JSON.parse(input), so if a json like [[header1,...headerN],[contentA1..contentA2]..] is passed it breaks. Yet, if a [{header1:contentA1,..headerN:contentA1},{..},..] is passed it succeeds, but then it doesn't get processed on function processHeaderRow(row) because it uses rows like [h1..hn]. Function processRow(row, header, pseudoFields) has the same issue.
The text was updated successfully, but these errors were encountered: