Skip to content

Commit

Permalink
Swap post buttons "Komentuj" and "Udostępnij"
Browse files Browse the repository at this point in the history
  • Loading branch information
danon committed Sep 6, 2024
1 parent 0ffa3fa commit 2e8eb77
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions resources/js/components/forum/post.vue
Original file line number Diff line number Diff line change
Expand Up @@ -239,15 +239,15 @@
<span class="d-none d-sm-inline">Obserwuj</span>
</button>

<button class="btn btn-sm" ref="shareButton">
<i class="fas fa-fw fa-share-nodes"/>
<span class="d-none d-sm-inline">Udostępnij</span>
</button>

<button v-if="!post.is_locked || post.permissions.write" @click="checkAuth(comment)" class="btn btn-sm">
<i :class="{'fas text-primary': isCommenting, 'far': !isCommenting}" class="fa-fw fa-comment"></i>
<span class="d-none d-sm-inline">Komentuj</span>
</button>

<button class="btn btn-sm" ref="shareButton">
<i class="fas fa-fw fa-share-nodes"/>
<span class="d-none d-sm-inline">Udostępnij</span>
</button>
</div>

<div v-if="post.permissions.write" class="ms-auto">
Expand Down

0 comments on commit 2e8eb77

Please sign in to comment.