Skip to content
This repository has been archived by the owner on Aug 27, 2024. It is now read-only.

Commit

Permalink
Server sort fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zziger authored Oct 20, 2023
1 parent 694a115 commit 29d2857
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/server/servers.vue
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@
<th class="orderable" @click="sortBy('name')">Server Name <i
v-if="this.filter.orderBy.column === 'name'" class="fa" :class="sortByClass"></i></th>
<th class="center">&nbsp;</th>
<th @click="sortBy('players')" class="orderable center">Players <i
v-if="this.filter.orderBy.column === 'players'" class="fa" :class="sortByClass"></i>
<th @click="sortBy('playersCount')" class="orderable center">Players <i
v-if="this.filter.orderBy.column === 'playersCount'" class="fa" :class="sortByClass"></i>
</th>
<th class="center optional">Gamemode</th>
<th class="center optional">Language</th>
Expand Down

0 comments on commit 29d2857

Please sign in to comment.