Skip to content

Commit e8f9661

Browse files
committed
fix: namespaces comma
1 parent 88ac40b commit e8f9661

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

components/modules/namespace/NamespaceOverview.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ const handleCopy = (target) => {
233233
</Button>
234234
235235
<Button type="secondary" size="mini" disabled>
236-
<Text size="12" weight="600" color="primary"> {{ page }} of {{ pages }} </Text>
236+
<Text size="12" weight="600" color="primary"> {{ comma(page) }} of {{ comma(pages) }} </Text>
237237
</Button>
238238
239239
<Button @click="handleNext" type="secondary" size="mini" :disabled="page === pages">

pages/namespaces.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ const handleCopy = (target) => {
196196
<td>
197197
<Flex align="center" gap="6">
198198
<Text size="13" weight="600" color="primary">{{ formatBytes(ns.size) }}</Text>
199-
<Text size="13" weight="600" color="tertiary">({{ ns.pfb_count }})</Text>
199+
<Text size="13" weight="600" color="tertiary">({{ comma(ns.pfb_count) }})</Text>
200200
</Flex>
201201
</td>
202202
<td>

0 commit comments

Comments
 (0)