Skip to content

Commit 69fa2c7

Browse files
committed
fix(LatestPFBTable&RecentNamespacesTable): rm CopyButton
1 parent e04bbba commit 69fa2c7

2 files changed

Lines changed: 4 additions & 10 deletions

File tree

components/data/LatestPFBTable.vue

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,6 @@ isLoading.value = false
6363
<Text size="13" weight="600" color="primary" mono>
6464
{{ pfb.hash.slice(pfb.hash.length - 4, pfb.hash.length).toUpperCase() }}
6565
</Text>
66-
67-
<CopyButton :text="pfb.hash.toUpperCase()" />
6866
</Flex>
6967

7068
<template #content>

components/data/RecentNamespacesTable.vue

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -95,18 +95,14 @@ const handleSort = async (by) => {
9595

9696
<tbody>
9797
<tr v-for="ns in namespaces">
98-
<td style="width: 1px">
98+
<td>
9999
<NuxtLink :to="`/namespace/${ns.namespace_id}`">
100100
<Flex align="center">
101101
<Tooltip position="start">
102102
<Flex direction="column" gap="4">
103-
<Flex align="center" gap="8">
104-
<Text size="12" weight="600" color="primary" mono class="table_column_alias">
105-
{{ $getDisplayName("namespaces", ns.namespace_id) }}
106-
</Text>
107-
108-
<CopyButton :text="getNamespaceID(ns.namespace_id)" />
109-
</Flex>
103+
<Text size="13" weight="600" color="primary" mono class="table_column_alias">
104+
{{ $getDisplayName("namespaces", ns.namespace_id) }}
105+
</Text>
110106

111107
<Text
112108
v-if="ns.name !== getNamespaceID(ns.namespace_id)"

0 commit comments

Comments
 (0)