Skip to content

Commit

Permalink
Fixing bug with saved visualization querys from logs
Browse files Browse the repository at this point in the history
Signed-off-by: TackAdam <navytackett@hotmail.com>
  • Loading branch information
TackAdam committed Jun 29, 2023
1 parent dbb4a8a commit dbd1dc7
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 dbd1dc7

Please sign in to comment.