UI: Fix Volume Snapshot from user VM as admin (#6824)

This commit is contained in:
Nicolas Vazquez 2022-10-13 03:56:35 -03:00 committed by GitHub
parent 6a0c9079ed
commit 79e5e7fe36
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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 || []
})