This is an automated email from the ASF dual-hosted git repository.
dahn pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/cloudstack.git
The following commit(s) were added to refs/heads/main by this push:
new 81b991ae9c9 Show volume UUIDs in the backup details page (#12156)
81b991ae9c9 is described below
commit 81b991ae9c9ed199a6194eecee89f5416ad5cdb0
Author: Tonitzpp <[email protected]>
AuthorDate: Mon Jan 5 05:07:19 2026 -0300
Show volume UUIDs in the backup details page (#12156)
Co-authored-by: toni.zamparetti <[email protected]>
---
ui/src/components/view/DetailsTab.vue | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/ui/src/components/view/DetailsTab.vue
b/ui/src/components/view/DetailsTab.vue
index 135ea7384fa..4145eeb9be6 100644
--- a/ui/src/components/view/DetailsTab.vue
+++ b/ui/src/components/view/DetailsTab.vue
@@ -64,8 +64,8 @@
</div>
<div v-else-if="$route.meta.name === 'backup' && item === 'volumes'">
<div v-for="(volume, idx) in JSON.parse(dataResource[item])"
:key="idx">
- <router-link v-if="!dataResource['vmbackupofferingremoved']"
:to="{ path: '/volume/' + volume.uuid }">{{ volume.type }} - {{ volume.path
}}</router-link>
- <span v-else>{{ volume.type }} - {{ volume.path }}</span> ({{
parseFloat(volume.size / (1024.0 * 1024.0 * 1024.0)).toFixed(1) }} GB)
+ <router-link v-if="!dataResource['vmbackupofferingremoved']"
:to="{ path: '/volume/' + volume.uuid }">{{ volume.type }} - {{ volume.uuid
}}</router-link>
+ <span v-else>{{ volume.type }} - {{ volume.uuid }}</span> ({{
parseFloat(volume.size / (1024.0 * 1024.0 * 1024.0)).toFixed(1) }} GB)
</div>
</div>
<div v-else-if="$route.meta.name === 'computeoffering' && item ===
'rootdisksize'">