Skip to content

Commit

Permalink
fix: go to explore - tile and context filters need to be merged (#1766)
Browse files Browse the repository at this point in the history
  • Loading branch information
filipgutica authored Nov 5, 2024
1 parent b5abcec commit 4cd0f38
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const options = computed((): AnalyticsChartOptions => ({
const exploreLink = computed(() => {
if (queryBridge && queryBridge.exploreBaseUrl) {
const exploreQuery: ExploreQuery | AiExploreQuery = {
filters: props.query.filters ?? [],
filters: [...props.context.filters, ...props.query.filters ?? []],
metrics: props.query.metrics as ExploreAggregations[] | AiExploreAggregations[] ?? [],
dimensions: props.query.dimensions as QueryableExploreDimensions[] | QueryableAiExploreDimensions[] ?? [],
time_range: props.query.time_range as TimeRangeV4 || props.context.timeSpec,
Expand Down

0 comments on commit 4cd0f38

Please sign in to comment.