mirror of
git://git.proxmox.com/git/proxmox-backup.git
synced 2025-01-03 01:18:02 +03:00
ui: dashboard: show tape backups/restores on task summary
for that we have to increase the panel height a bit Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
parent
21ff6e593b
commit
0763ac140c
@ -93,6 +93,8 @@ Ext.define('PBS.Dashboard', {
|
||||
garbage_collection: { error: 0, warning: 0, ok: 0 },
|
||||
sync: { error: 0, warning: 0, ok: 0 },
|
||||
verify: { error: 0, warning: 0, ok: 0 },
|
||||
'tape-backup': { error: 0, warning: 0, ok: 0 },
|
||||
'tape-restore': { error: 0, warning: 0, ok: 0 },
|
||||
};
|
||||
|
||||
records.forEach(record => {
|
||||
@ -110,6 +112,10 @@ Ext.define('PBS.Dashboard', {
|
||||
type = 'prune';
|
||||
}
|
||||
|
||||
if (type.startsWith('tape-backup')) {
|
||||
type = 'tape-backup';
|
||||
}
|
||||
|
||||
if (data[type] && task.status) {
|
||||
let parsed = Proxmox.Utils.parse_task_status(task.status);
|
||||
data[type][parsed]++;
|
||||
@ -258,13 +264,13 @@ Ext.define('PBS.Dashboard', {
|
||||
Ext.String.format(gettext('{0} days'), '{days}') + ')',
|
||||
},
|
||||
xtype: 'pbsTaskSummary',
|
||||
height: 200,
|
||||
height: 250,
|
||||
reference: 'tasksummary',
|
||||
},
|
||||
{
|
||||
iconCls: 'fa fa-ticket',
|
||||
title: 'Subscription',
|
||||
height: 200,
|
||||
height: 250,
|
||||
reference: 'subscription',
|
||||
xtype: 'pbsSubscriptionInfo',
|
||||
},
|
||||
|
@ -17,6 +17,8 @@ Ext.define('PBS.TaskSummary', {
|
||||
"garbage_collection",
|
||||
"sync",
|
||||
"verify",
|
||||
"tape-backup",
|
||||
"tape-restore",
|
||||
],
|
||||
|
||||
typeFilterMap: {
|
||||
@ -29,6 +31,8 @@ Ext.define('PBS.TaskSummary', {
|
||||
"garbage_collection": gettext('Garbage collections'),
|
||||
"sync": gettext('Syncs'),
|
||||
"verify": gettext('Verify'),
|
||||
"tape-backup": gettext('Tape Backup'),
|
||||
"tape-restore": gettext('Tape Restore'),
|
||||
},
|
||||
|
||||
// set true to show the onclick panel as modal grid
|
||||
|
Loading…
Reference in New Issue
Block a user