From 98301c0877f2d662258d2bc8d6b6b8139933d39c Mon Sep 17 00:00:00 2001 From: Fabian Ebner Date: Fri, 22 Oct 2021 11:07:50 +0200 Subject: [PATCH] ui: guest backup grid: monitor store errors so that users see when something went wrong. Don't mask the grid directly, but rather only its view so that the title bar can be used for selecting another storage during load. Reported in the community forum: https://forum.proxmox.com/threads/get-backups-from-proxmox-randomly-fails.98383/ Signed-off-by: Fabian Ebner --- www/manager6/grid/BackupView.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/www/manager6/grid/BackupView.js b/www/manager6/grid/BackupView.js index 8825ed96..424a58b9 100644 --- a/www/manager6/grid/BackupView.js +++ b/www/manager6/grid/BackupView.js @@ -89,6 +89,8 @@ Ext.define('PVE.grid.BackupView', { url: url, }); + Proxmox.Utils.monStoreErrors(me.view, me.store, true); + reload(); };