Skip to content

Commit

Permalink
fix(generic-axes): apply contribution before flatten (#20077)
Browse files Browse the repository at this point in the history
  • Loading branch information
villebro authored May 16, 2022
1 parent 67d4318 commit d5802f7
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,11 +96,11 @@ export default function buildQuery(formData: QueryFormData) {
...baseQueryObject,
...{ is_timeseries },
}),
flattenOperator(formData, baseQueryObject),
// todo: move contribution and prophet before flatten
contributionOperator(formData, baseQueryObject),
flattenOperator(formData, baseQueryObject),
// todo: move prophet before flatten
prophetOperator(formData, baseQueryObject),
],
].filter(op => op),
},
];
});
Expand Down

0 comments on commit d5802f7

Please sign in to comment.