From 4ba75208563c4420340bd195dc8ae9845f49d735 Mon Sep 17 00:00:00 2001 From: gravel Date: Sun, 12 Mar 2023 11:14:54 +0100 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 0a0eb548..245403e9 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(); }