We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a89af6 commit af00caeCopy full SHA for af00cae
ui/src/components/view/InfoCard.vue
@@ -231,7 +231,16 @@
231
<div class="resource-detail-item" v-else-if="resource.memorytotalgb">
232
<div class="resource-detail-item__label">{{ $t('label.memory') }}</div>
233
<div class="resource-detail-item__details">
234
- <bulb-outlined />{{ resource.memorytotalgb + ' ' + $t('label.memory') }}
+ <bulb-outlined />
235
+ <span>
236
+ {{ resource.memorytotalgb + ' ' + $t('label.memory') }}
237
+ <a-tooltip placement="top">
238
+ <template #title>
239
+ {{ (resource.memorytotal/(1024**2)).toFixed(3) }} MB
240
+ </template>
241
+ <QuestionCircleOutlined />
242
+ </a-tooltip>
243
+ </span>
244
</div>
245
<div>
246
<span v-if="resource.memoryusedgb">
0 commit comments