From 79e5e7fe36efd01b88267e048ea49303a32c0177 Mon Sep 17 00:00:00 2001 From: Nicolas Vazquez Date: Thu, 13 Oct 2022 03:56:35 -0300 Subject: [PATCH] UI: Fix Volume Snapshot from user VM as admin (#6824) --- ui/src/views/compute/CreateSnapshotWizard.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/views/compute/CreateSnapshotWizard.vue b/ui/src/views/compute/CreateSnapshotWizard.vue index 03450be4245..bcd7d0f4dbe 100644 --- a/ui/src/views/compute/CreateSnapshotWizard.vue +++ b/ui/src/views/compute/CreateSnapshotWizard.vue @@ -119,7 +119,7 @@ export default { fetchData () { this.loading = true - api('listVolumes', { virtualMachineId: this.resource.id }) + api('listVolumes', { virtualMachineId: this.resource.id, listall: true }) .then(json => { this.listVolumes = json.listvolumesresponse.volume || [] })