We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Kibana version: 6.5.0
If text is entered into the search bar in the Advanced Settings page under the Management tab that isn't valid AST, the page crashes.
For example type in ? into the search bar on the page:
?
causes:
The text was updated successfully, but these errors were encountered:
Pinging @elastic/kibana-management
Sorry, something went wrong.
On the EuiSearchBar example the error is handled like this:
onChange = ({ query, error }) => { if (error) { this.setState({ error }); } else { this.setState({ error: null, result: EuiSearchBar.Query.execute(query, items, { defaultFields: ['owner', 'tag', 'type'] }), query }); } };
@cjcenizal Same thing happens on the saved object management page if you enter ? in the search box
For further context, the original bug reported was introduced in 6.4 (#17465) and the saved objects bug was also introduced in 6.4 (#17426)
nreese
No branches or pull requests
Kibana version: 6.5.0
If text is entered into the search bar in the Advanced Settings page under the Management tab that isn't valid AST, the page crashes.
For example type in
?
into the search bar on the page:causes:
The text was updated successfully, but these errors were encountered: