diff --git a/output/main.js b/output/main.js index 9cc1f70..3b5c456 100644 --- a/output/main.js +++ b/output/main.js @@ -97,6 +97,12 @@ function reactToURLParameters() { return; } + if (!hash.includes("+")) { + useSearchTerm(`#${decodeURIComponent(hash)}`, true); + toggleSearchBarVisibility(); + return; + } + const communityIDPrefix = hash; const row = dom.community_row(communityIDPrefix, true); if (row == null || !(row instanceof HTMLTableRowElement)) { @@ -709,8 +715,6 @@ function useSearchTerm(rawTerm, fillSearchBarWithTerm = false) { if (fillSearchBarWithTerm) { searchBar.value = rawTerm; } - - sortTable(); } function replaceRowsWith(rows) {