This is an automated email from the ASF dual-hosted git repository.
dahn pushed a commit to branch 4.17
in repository https://gitbox.apache.org/repos/asf/cloudstack.git
The following commit(s) were added to refs/heads/4.17 by this push:
new 79e5e7fe36e UI: Fix Volume Snapshot from user VM as admin (#6824)
79e5e7fe36e is described below
commit 79e5e7fe36efd01b88267e048ea49303a32c0177
Author: Nicolas Vazquez <[email protected]>
AuthorDate: Thu Oct 13 03:56:35 2022 -0300
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 || []
})