Skip to content

Commit

Permalink
Merge pull request getredash#1666 from deecay/pivot-getdata
Browse files Browse the repository at this point in the history
Change: add support for filtered data in Pivot table visualization
  • Loading branch information
arikfr authored Mar 26, 2017
2 parents ba54d68 + 3f04734 commit c99bd03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/app/visualizations/pivot/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ function pivotTableRenderer() {
if ($scope.queryResult.getData() !== null) {
// We need to give the pivot table its own copy of the data, because it changes
// it which interferes with other visualizations.
data = angular.copy($scope.queryResult.getRawData());
data = angular.copy($scope.queryResult.getData());
const options = {
renderers: $.pivotUtilities.renderers,
onRefresh(config) {
Expand Down

0 comments on commit c99bd03

Please sign in to comment.