From afd3b0718e300f6681b47d4abbc58e4410cae9f2 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Fri, 21 Feb 2020 16:36:48 +0100 Subject: [PATCH] ui: add date column in per-guest backup archive panel Similar to commit 12d50fcd21c045ba55a3cbadd27b91a9e8939310 which added this column to the storage content grid let's also add it here. As we also base off the 'pve-storage-content' it's just a matter of copying over the column definition 1:1 Signed-off-by: Thomas Lamprecht --- www/manager6/grid/BackupView.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/www/manager6/grid/BackupView.js b/www/manager6/grid/BackupView.js index 968b1d48..a74c6ccb 100644 --- a/www/manager6/grid/BackupView.js +++ b/www/manager6/grid/BackupView.js @@ -205,6 +205,11 @@ Ext.define('PVE.grid.BackupView', { renderer: PVE.Utils.render_storage_content, dataIndex: 'volid' }, + { + header: gettext('Date'), + width: 150, + dataIndex: 'vdate' + }, { header: gettext('Format'), width: 100,