ui: some more eslint auto-fixes

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht
2020-09-25 18:40:03 +02:00
parent 264c19582b
commit 6ab77df3f5
10 changed files with 74 additions and 96 deletions

View File

@ -69,7 +69,7 @@ Ext.define('PBS.config.SyncJobView', {
if (!upid) return;
Ext.create('Proxmox.window.TaskViewer', {
upid
upid,
}).show();
},
@ -116,13 +116,13 @@ Ext.define('PBS.config.SyncJobView', {
text = Proxmox.Utils.unknownText;
break;
case 'error':
icon = 'times critical';
icon = 'times critical';
text = Proxmox.Utils.errorText + ': ' + value;
break;
case 'warning':
icon = 'exclamation warning';
break;
case 'ok':
case 'ok':
icon = 'check good';
text = gettext("OK");
}