Skip to content

Commit

Permalink
fix: Add buttons to Treasury page
Browse files Browse the repository at this point in the history
  • Loading branch information
samuveth committed Feb 5, 2024
1 parent cbab850 commit b1c3ff8
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/views/Space/Treasury.vue
Original file line number Diff line number Diff line change
Expand Up @@ -162,8 +162,12 @@ watchEffect(() => setTitle(`Treasury - ${props.space.name}`));
</div>
<div>
<div class="flex pl-4 border-b space-x-3">
<Link :is-active="page === 'tokens'" text="Tokens" @click="page = 'tokens'" />
<Link :is-active="page === 'nfts'" text="NFTs" @click="page = 'nfts'" />
<button type="button" @click="page = 'tokens'">
<Link :is-active="page === 'tokens'" text="Tokens" />
</button>
<button type="button" @click="page = 'nfts'">
<Link :is-active="page === 'nfts'" text="NFTs" />
</button>
</div>
<div v-if="page === 'tokens'">
<UiLoading v-if="loading && !loaded" class="px-4 py-3 block" />
Expand Down

0 comments on commit b1c3ff8

Please sign in to comment.