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)
  • Loading branch information
Antonio-RiveroMartnez authored and sfirke committed Mar 22, 2024
1 parent 1090523 commit c2c7a0c
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 c2c7a0c

Please sign in to comment.