From d2bf60dc0f73c0b17cfcf9e34bd9eea197076f1d Mon Sep 17 00:00:00 2001 From: nvazquez Date: Wed, 12 Oct 2022 13:07:55 -0300 Subject: [PATCH] UI: Fix Volume Snapshot from user VM as admin --- 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 03450be42453..bcd7d0f4dbe1 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 || [] })