ui: tape: fix eslint warnings (trailing comma)

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
Dominik Csapak 2021-02-19 15:40:23 +01:00 committed by Dietmar Maurer
parent 4188fd59a0
commit 6d62e69f9a
2 changed files with 4 additions and 4 deletions

View File

@ -13,7 +13,7 @@ Ext.define('pbs-tape-backup-job-status', {
let task = Proxmox.Utils.parse_task_upid(data['last-run-upid']); let task = Proxmox.Utils.parse_task_upid(data['last-run-upid']);
return endtime - task.starttime; return endtime - task.starttime;
}, },
} },
], ],
idProperty: 'id', idProperty: 'id',
proxy: { proxy: {
@ -42,7 +42,7 @@ Ext.define('PBS.config.TapeBackupJobView', {
init: function(view) { init: function(view) {
Proxmox.Utils.monStoreErrors(view, view.getStore().rstore); Proxmox.Utils.monStoreErrors(view, view.getStore().rstore);
} },
}, },
listeners: { listeners: {
@ -143,5 +143,5 @@ Ext.define('PBS.config.TapeBackupJobView', {
let me = this; let me = this;
me.callParent(); me.callParent();
} },
}); });

View File

@ -422,7 +422,7 @@ Ext.define('PBS.TapeManagement.ChangerStatus', {
method: 'GET', method: 'GET',
params: { params: {
"update-status": false, "update-status": false,
} },
}); });
let [status, drives, tapes_list] = await Promise.all([status_fut, drives_fut, tapes_fut]); let [status, drives, tapes_list] = await Promise.all([status_fut, drives_fut, tapes_fut]);