From 219293bd1d1ab5890cc2cd79ba2c48366dfc5bb8 Mon Sep 17 00:00:00 2001 From: Aaron Lauterer Date: Wed, 10 Aug 2022 17:10:20 +0200 Subject: [PATCH] ui: CephInstall: fix a/an typo and switch to template string Signed-off-by: Aaron Lauterer --- www/manager6/window/CephInstall.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/www/manager6/window/CephInstall.js b/www/manager6/window/CephInstall.js index 1b8abc41..432c6719 100644 --- a/www/manager6/window/CephInstall.js +++ b/www/manager6/window/CephInstall.js @@ -34,9 +34,9 @@ Ext.define('PVE.ceph.Install', { }, windowText: function(get) { if (get('isInstalled')) { - return '

' + - Ext.String.format(gettext('{0} is not initialized.'), 'Ceph') + ' '+ - gettext('You need to create a initial config once.') + '

'; + return `

+ ${Ext.String.format(gettext('{0} is not initialized.'), 'Ceph')} + ${gettext('You need to create an initial config once.')}

`; } else { return '

' + Ext.String.format(gettext('{0} is not installed on this node.'), 'Ceph') + '
' +