Skip to content

Commit

Permalink
[sql lab] visualization flow: fixing the groupby parameter (#2681)
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch authored Apr 30, 2017
1 parent 0fdb57a commit ac3aba7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ class VisualizeModal extends React.PureComponent {
formData.metric = mainMetric.name;
}
if (mainGroupBy) {
formData.groupby = mainGroupBy.name;
formData.groupby = [mainGroupBy.name];
}
window.open(getExploreUrl(formData));
},
Expand Down

0 comments on commit ac3aba7

Please sign in to comment.