ui: dashboard: code cleanup

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2020-10-06 15:16:00 +02:00
parent a2920c3757
commit 21486225c8

View File

@ -151,7 +151,8 @@ Ext.define('PBS.Dashboard', {
};
records.forEach(record => {
let type = record.data.worker_type;
let task = record.data;
let type = task.worker_type;
if (type === 'syncjob') {
type = 'sync';
}
@ -160,8 +161,8 @@ Ext.define('PBS.Dashboard', {
type = 'verify';
}
if (data[type] && record.data.status) {
let parsed = Proxmox.Utils.parse_task_status(record.data.status);
if (data[type] && task.status) {
let parsed = Proxmox.Utils.parse_task_status(task.status);
data[type][parsed]++;
}
});