Skip to content

Commit

Permalink
Merge pull request #66 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 committed Aug 26, 2024
2 parents ddb9384 + ca970e8 commit 092e211
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion components/DataTableMyRelays/DataTableMyRelays.vue
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ const handleUnlockClick = async (fingerprint: string) => {
<span class="monospace">{{ row.fingerprint }}</span>
</template>
<template #nickname-data="{ row }">
{{ userStore?.nickNames?.[row.fingerprint] || '-' }}
{{ userStore?.relaysMeta?.[row.fingerprint]?.nickname || '-' }}
</template>
<template #previousDistribution-data="{ row }">
{{ facilitatorStore?.distributionPerRelay?.[row.fingerprint] || '-' }}
Expand Down
2 changes: 1 addition & 1 deletion components/DataTableMyRelays/DataTableMyRelaysMobile.vue
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ const handleUnlockClick = async (fingerprint: string) => {
>
<div class="flex justify-between items-center">
<div class="font-semibold">Nickname</div>
<div>{{ userStore?.nickNames?.[row.fingerprint] || '-' }}</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
1 change: 0 additions & 1 deletion composables/txCache.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ export class TxCache {
if (fromCache) {
return fromCache;
}

const fetched = await $fetch<Data>(`${gateway}/${txId}`);
await this.saveTransactionData(txId, fetched);

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.2',
version: '1.1.3',
},
},
plugins: [{ src: '~/plugins/vue-query.client.ts', mode: 'client' }],
Expand Down

0 comments on commit 092e211

Please sign in to comment.