Skip to content

Commit

Permalink
Merge pull request #71 from epochtalk/server-migration
Browse files Browse the repository at this point in the history
Server migration
  • Loading branch information
crod951 authored Jan 10, 2025
2 parents 9e1874a + 4e27de3 commit d42370e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/users/UserPosts.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
<div class="user-profile-posts">
<div class="table-actions">
<button @click="toggleThreads(true)" :class="{'active': threads}">
<strong>Threads&nbsp;</strong> <span class="username">by {{username}}</span>
<strong>Threads&nbsp;</strong> <span v-if="user?.username" class="username">by {{user.username}}</span>
</button>

<button @click="toggleThreads(false)" :class="{'active': !threads}">
<strong>Posts&nbsp;</strong> <span class="username">by {{username}}</span>
<strong>Posts&nbsp;</strong> <span v-if="user?.username" class="username">by {{user.username}}</span>
</button>
</div>

Expand Down

0 comments on commit d42370e

Please sign in to comment.