Skip to content

Commit 53e3528

Browse files
Tonitzpptoni.zamparetti
authored andcommitted
Show volume UUIDs in the backup details page (apache#12156)
Co-authored-by: toni.zamparetti <toni.zamparetti@scclouds.com.br>
1 parent 862b42c commit 53e3528

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ui/src/components/view/DetailsTab.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@
6464
</div>
6565
<div v-else-if="$route.meta.name === 'backup' && item === 'volumes'">
6666
<div v-for="(volume, idx) in JSON.parse(dataResource[item])" :key="idx">
67-
<router-link v-if="!dataResource['vmbackupofferingremoved']" :to="{ path: '/volume/' + volume.uuid }">{{ volume.type }} - {{ volume.path }}</router-link>
68-
<span v-else>{{ volume.type }} - {{ volume.path }}</span> ({{ parseFloat(volume.size / (1024.0 * 1024.0 * 1024.0)).toFixed(1) }} GB)
67+
<router-link v-if="!dataResource['vmbackupofferingremoved']" :to="{ path: '/volume/' + volume.uuid }">{{ volume.type }} - {{ volume.uuid }}</router-link>
68+
<span v-else>{{ volume.type }} - {{ volume.uuid }}</span> ({{ parseFloat(volume.size / (1024.0 * 1024.0 * 1024.0)).toFixed(1) }} GB)
6969
</div>
7070
</div>
7171
<div v-else-if="$route.meta.name === 'computeoffering' && item === 'rootdisksize'">

0 commit comments

Comments
 (0)