mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
[console_extensions] check that elasticsearch config is available (#22105)
This commit is contained in:
parent
897775649d
commit
6c9788dced
1 changed files with 3 additions and 1 deletions
|
@ -13,7 +13,9 @@ export function consoleExtensions(kibana) {
|
|||
return (
|
||||
config.get('console_extensions.enabled') &&
|
||||
config.has('console.enabled') &&
|
||||
config.get('console.enabled')
|
||||
config.get('console.enabled') &&
|
||||
config.has('elasticsearch') &&
|
||||
!config.get('elasticsearch.tribe.url')
|
||||
);
|
||||
},
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue