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 1e133d0 commit e6f048bCopy full SHA for e6f048b
1 file changed
ui/src/components/view/ListView.vue
@@ -194,7 +194,10 @@
194
<router-link :to="{ path: '/volume/' + record.volumeid }">{{ text }}</router-link>
195
</template>
196
<template #size="{ text }">
197
- <span v-if="text">
+ <span v-if="text && $route.path === '/kubernetes'">
198
+ {{ text }}
199
+ </span>
200
+ <span v-else-if="text">
201
{{ parseFloat(parseFloat(text) / 1024.0 / 1024.0 / 1024.0).toFixed(2) }} GiB
202
</span>
203
0 commit comments