mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
Using template string instead of concatenation
This commit is contained in:
parent
58f9843c64
commit
34258186bf
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ export default function setupSettings(kbnServer, server, config) {
|
|||
|
||||
function userSettingsNotFound(kibanaVersion) {
|
||||
if (server.plugins.elasticsearch.status.state === 'green') {
|
||||
server.plugins.kibana.status.red('Could not find user-provided settings for this version of Kibana (' + kibanaVersion + ')');
|
||||
server.plugins.kibana.status.red(`Could not find user-provided settings for this version of Kibana (${kibanaVersion})`);
|
||||
} else {
|
||||
server.log(['warning', 'settings'], 'User-provided settings were requested before the Kibana index was ready');
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue