[pve-devel] [PATCH manager] ui: file-restore: start the file-restore on the selected node

Dominik Csapak d.csapak at proxmox.com
Thu Jun 10 09:37:19 CEST 2021


and not the node where the browser connects.
there are at least two good reasons for this:
* it is confusing, since the user would expect it to start where
  the ui is pointint to
* the storage may not be available on the node the browser connects
  to, but it must be available on the node selected in the ui

Signed-off-by: Dominik Csapak <d.csapak at proxmox.com>
---
 www/manager6/grid/BackupView.js    | 4 ++--
 www/manager6/storage/BackupView.js | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/www/manager6/grid/BackupView.js b/www/manager6/grid/BackupView.js
index 8825ed96..fbed4118 100644
--- a/www/manager6/grid/BackupView.js
+++ b/www/manager6/grid/BackupView.js
@@ -247,8 +247,8 @@ Ext.define('PVE.grid.BackupView', {
 		let isVMArchive = PVE.Utils.volume_is_qemu_backup(rec.data.volid, rec.data.format);
 		Ext.create('Proxmox.window.FileBrowser', {
 		    title: gettext('File Restore') + " - " + rec.data.text,
-		    listURL: `/api2/json/nodes/localhost/storage/${storage}/file-restore/list`,
-		    downloadURL: `/api2/json/nodes/localhost/storage/${storage}/file-restore/download`,
+		    listURL: `/api2/json/nodes/${nodename}/storage/${storage}/file-restore/list`,
+		    downloadURL: `/api2/json/nodes/${nodename}/storage/${storage}/file-restore/download`,
 		    extraParams: {
 			volume: rec.data.volid,
 		    },
diff --git a/www/manager6/storage/BackupView.js b/www/manager6/storage/BackupView.js
index 0613c94d..c287ec63 100644
--- a/www/manager6/storage/BackupView.js
+++ b/www/manager6/storage/BackupView.js
@@ -114,8 +114,8 @@ Ext.define('PVE.storage.BackupView', {
 		    let isVMArchive = PVE.Utils.volume_is_qemu_backup(rec.data.volid, rec.data.format);
 		    Ext.create('Proxmox.window.FileBrowser', {
 			title: gettext('File Restore') + " - " + rec.data.text,
-			listURL: `/api2/json/nodes/localhost/storage/${me.storage}/file-restore/list`,
-			downloadURL: `/api2/json/nodes/localhost/storage/${me.storage}/file-restore/download`,
+			listURL: `/api2/json/nodes/${nodename}/storage/${me.storage}/file-restore/list`,
+			downloadURL: `/api2/json/nodes/${nodename}/storage/${me.storage}/file-restore/download`,
 			extraParams: {
 			    volume: rec.data.volid,
 			},
-- 
2.20.1






More information about the pve-devel mailing list