Skip to content

Commit 861028e

Browse files
committed
Show volume UUIDs in the backup details page
1 parent a50de02 commit 861028e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/src/components/view/DetailsTab.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
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>
67+
<router-link v-if="!dataResource['vmbackupofferingremoved']" :to="{ path: '/volume/' + volume.uuid }">{{ volume.type }} - {{ volume.uuid }}</router-link>
6868
<span v-else>{{ volume.type }} - {{ volume.path }}</span> ({{ parseFloat(volume.size / (1024.0 * 1024.0 * 1024.0)).toFixed(1) }} GB)
6969
</div>
7070
</div>

0 commit comments

Comments
 (0)