Skip to content

Commit

Permalink
Merge pull request #68 from ATOR-Development/leggo/phase-1/dev
Browse files Browse the repository at this point in the history
Leggo/phase 1/dev
  • Loading branch information
MarcoMandar authored Aug 27, 2024
2 parents 6575e3f + e83b62b commit b5ae6d1
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion components/DashboardFooter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const getLink = (address: string, type: string) => {
case 'arweave':
return `https://sonar.warp.cc/#/app/contract/${address}?network=mainnet`;
case 'viewblock':
return `https://viewblock.io/arweave/address/${address}?network=mainnet`;
return `https://viewblock.io/arweave/address/${address}`;
default:
return '#';
}
Expand Down
6 changes: 3 additions & 3 deletions components/DataTableMyRelays/DataTableMyRelays.vue
Original file line number Diff line number Diff line change
Expand Up @@ -528,7 +528,7 @@ const handleUnlockClick = async (fingerprint: string) => {
<Tooltip
placement="top"
arrow
text="Shows the current lock status and amount of locked tokens needed for Registration."
text="Shows the current lock status of the Registration."
>
<Icon name="heroicons:exclamation-circle" class="h-4" />
</Tooltip>
Expand Down Expand Up @@ -560,10 +560,10 @@ const handleUnlockClick = async (fingerprint: string) => {
<span class="text-gray-800 dark:text-white">Claimed:</span> This
item has already been claimed. No further action is needed.
</div>
<div class="text-xs font-normal text-gray-600 dark:text-gray-300">
<!-- <div class="text-xs font-normal text-gray-600 dark:text-gray-300">
<span class="text-gray-800 dark:text-white">Locked:</span> Your
lock tx is awaiting Arweave confirmation.
</div>
</div> -->
</template>
<template #trigger>
<div><Icon name="heroicons:exclamation-circle" /></div>
Expand Down
6 changes: 4 additions & 2 deletions components/DataTableMyRelays/DataTableMyRelaysMobile.vue
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,9 @@ const handleUnlockClick = async (fingerprint: string) => {
>
<div class="flex justify-between items-center">
<div class="font-semibold">Nickname</div>
<div>{{ userStore?.relaysMeta?.[row.fingerprint]?.nickname || '-' }}</div>
<div>
{{ userStore?.relaysMeta?.[row.fingerprint]?.nickname || '-' }}
</div>
</div>
<div class="flex justify-between items-center mt-2">
<div class="font-semibold">Running</div>
Expand Down Expand Up @@ -501,7 +503,7 @@ const handleUnlockClick = async (fingerprint: string) => {
<Tooltip
placement="top"
arrow
text="Shows the current lock status and amount of locked tokens needed for Registration."
text="Shows the current lock status of the Registration."
>
<Icon name="heroicons:exclamation-circle" class="h-4" />
</Tooltip>
Expand Down
2 changes: 1 addition & 1 deletion components/DataTableMyRelays/columns/LockStatusColumn.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ defineProps<{
<USkeleton class="w-[15rem] h-10" />
</template>
<template v-else>
<div v-if="isLocked" class="text-green-300">
<div v-if="isLocked" class="text-green-600 dark:text-green-300">
<Icon name="material-symbols:lock" />
Locked
</div>
Expand Down
2 changes: 1 addition & 1 deletion nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export default defineNuxtConfig({
supportWalletPublicKeyBase64:
'K3jnSGVyHj4kSzgce3+k8gJsfHvUoQeJMNPO8CcsO2s=',
commitHash: process.env.NUXT_PUBLIC_COMMIT_HASH || 'dev',
version: '1.1.4',
version: '1.1.5',
},
},
plugins: [{ src: '~/plugins/vue-query.client.ts', mode: 'client' }],
Expand Down

0 comments on commit b5ae6d1

Please sign in to comment.