From 114644c13f01c8ebae18cf1918b267963908fec3 Mon Sep 17 00:00:00 2001 From: gravel Date: Sun, 12 Mar 2023 10:14:54 +0000 Subject: [PATCH] By default, sort by server column. --- output/main.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/output/main.js b/output/main.js index 0a0eb54..245403e 100644 --- a/output/main.js +++ b/output/main.js @@ -63,7 +63,8 @@ const transformJoinURL = (join_link) => { function onLoad(timestamp) { setLastChecked(timestamp); hideBadCommunities(); - sortTable(COLUMN.NAME); + // Sort by server to show off new feature & align colors. + sortTable(COLUMN.SERVER_ICON); createJoinLinkButtons(); markSortableColumns(); }