Skip to content

Commit

Permalink
analyze wildcard should not be part of default query (#12938)
Browse files Browse the repository at this point in the history
  • Loading branch information
ppisljar authored Jul 18, 2017
1 parent 166a0b1 commit b69a446
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core_plugins/kibana/public/visualize/editor/editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ function VisEditor($scope, $route, timefilter, AppState, $window, kbnUrl, courie
const stateDefaults = {
uiState: savedVis.uiStateJSON ? JSON.parse(savedVis.uiStateJSON) : {},
linked: !!savedVis.savedSearchId,
query: searchSource.getOwn('query') || { query_string: { analyze_wildcard: true, query: '*' } },
query: searchSource.getOwn('query') || { query_string: { query: '*' } },
filters: searchSource.getOwn('filter') || [],
vis: savedVisState
};
Expand Down

0 comments on commit b69a446

Please sign in to comment.