Skip to content

Commit

Permalink
Make org sorting by member count and created date initially descending
Browse files Browse the repository at this point in the history
That puts the interesting stuff at the top
  • Loading branch information
myieye committed Oct 29, 2024
1 parent 10e2ebb commit 4057844
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/routes/(authenticated)/org/list/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
swapSortDir();
} else {
sortColumn = clickedColumn;
sortDir = 'ascending';
sortDir = clickedColumn === 'name' ? 'ascending' : 'descending';
}
}
Expand Down

0 comments on commit 4057844

Please sign in to comment.