Skip to content

Commit

Permalink
Merge pull request opensearch-project#587 from TackAdam/appBugFix
Browse files Browse the repository at this point in the history
[BugFix] Application Analytics - Save Visualization Missing Index
  • Loading branch information
TackAdam authored Jun 30, 2023
2 parents 0a803dc + dbd1dc7 commit 5fea6ab
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion public/components/event_analytics/explorer/explorer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ import {
} from '../../../../common/types/explorer';
import {
buildQuery,
buildRawQuery,
getIndexPatternFromRawQuery,
uiSettingsService,
} from '../../../../common/utils';
Expand Down Expand Up @@ -739,7 +740,7 @@ export const Explorer = ({
savingTitle: string
) => {
return {
query: queryState[RAW_QUERY],
query: buildRawQuery(query, appBaseQuery),
fields: fields[SELECTED_FIELDS],
dateRange: queryState[SELECTED_DATE_RANGE],
name: savingTitle,
Expand Down

0 comments on commit 5fea6ab

Please sign in to comment.