ui: tape: fix eslint warnings (trailing comma)
Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
parent
4188fd59a0
commit
6d62e69f9a
|
@ -13,7 +13,7 @@ Ext.define('pbs-tape-backup-job-status', {
|
|||
let task = Proxmox.Utils.parse_task_upid(data['last-run-upid']);
|
||||
return endtime - task.starttime;
|
||||
},
|
||||
}
|
||||
},
|
||||
],
|
||||
idProperty: 'id',
|
||||
proxy: {
|
||||
|
@ -42,7 +42,7 @@ Ext.define('PBS.config.TapeBackupJobView', {
|
|||
|
||||
init: function(view) {
|
||||
Proxmox.Utils.monStoreErrors(view, view.getStore().rstore);
|
||||
}
|
||||
},
|
||||
},
|
||||
|
||||
listeners: {
|
||||
|
@ -143,5 +143,5 @@ Ext.define('PBS.config.TapeBackupJobView', {
|
|||
let me = this;
|
||||
|
||||
me.callParent();
|
||||
}
|
||||
},
|
||||
});
|
||||
|
|
|
@ -422,7 +422,7 @@ Ext.define('PBS.TapeManagement.ChangerStatus', {
|
|||
method: 'GET',
|
||||
params: {
|
||||
"update-status": false,
|
||||
}
|
||||
},
|
||||
});
|
||||
|
||||
let [status, drives, tapes_list] = await Promise.all([status_fut, drives_fut, tapes_fut]);
|
||||
|
|
Loading…
Reference in New Issue