We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8510344 commit 9454eddCopy full SHA for 9454edd
1 file changed
ui/src/views/compute/MigrateWizard.vue
@@ -47,6 +47,9 @@
47
<div slot="memused" slot-scope="record">
48
{{ record.memoryused | byteToGigabyte }} GB
49
</div>
50
+ <div slot="memoryallocatedpercentage" slot-scope="record">
51
+ {{ record.memoryallocatedpercentage }}
52
+ </div>
53
<template slot="select" slot-scope="record">
54
<a-radio
55
class="host-item__radio"
@@ -113,6 +116,10 @@ export default {
113
116
title: this.$t('label.cpuused'),
114
117
dataIndex: 'cpuused'
115
118
},
119
+ {
120
+ title: this.$t('label.memoryallocated'),
121
+ scopedSlots: { customRender: 'memoryallocatedpercentage' }
122
+ },
123
{
124
title: this.$t('label.memused'),
125
scopedSlots: { customRender: 'memused' }
0 commit comments