Skip to content

Commit

Permalink
Using template string instead of concatenation
Browse files Browse the repository at this point in the history
  • Loading branch information
ycombinator committed Jun 10, 2016
1 parent 58f9843 commit 3425818
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui/settings/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');
}
Expand Down

0 comments on commit 3425818

Please sign in to comment.