Skip to content

Commit

Permalink
fix(plugins): Apply dashboard filters to comparison query in BigNumbe…
Browse files Browse the repository at this point in the history
…r with Time Comparison chart (apache#27138)

(cherry picked from commit dab44c0)
  • Loading branch information
Antonio-RiveroMartnez authored and sadpandajoe committed Feb 20, 2024
1 parent f365b52 commit e9f1233
Showing 1 changed file with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,13 +87,19 @@ export default function buildQuery(formData: QueryFormData) {
formDataB = {
...formData,
adhoc_filters: queryBFilters,
extra_form_data: {},
extra_form_data: {
...extraFormData,
time_range: undefined,
},
};
} else {
formDataB = {
...formData,
adhoc_filters: formData.adhoc_custom,
extra_form_data: {},
extra_form_data: {
...extraFormData,
time_range: undefined,
},
};
}

Expand Down

0 comments on commit e9f1233

Please sign in to comment.