Skip to content

Commit

Permalink
Merge pull request #796 from plotly/sort-src-fix
Browse files Browse the repository at this point in the history
Do not add groups and groupssrc to sort transform
  • Loading branch information
dmt0 authored Nov 15, 2018
2 parents 0e14a61 + c74e7e7 commit ff868ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/containers/TransformAccordion.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class TransformAccordion extends Component {
if (type === 'filter') {
payload.target = [];
payload.targetsrc = null;
} else {
} else if (type !== 'sort') {
payload.groupssrc = null;
payload.groups = null;
}
Expand Down

0 comments on commit ff868ed

Please sign in to comment.