Ensure that filters with spaces in them are decoded properly

This commit is contained in:
2026-02-15 19:03:32 -05:00
parent fb9f52cfc6
commit b6d6c23eeb

View File

@@ -13,7 +13,7 @@ export default {
data() {
return {
ascending: this.ascending,
filter: window.location.href.split("filter=")[1] || "",
filter: decodeURIComponent(window.location.href.split("filter=")[1] || ""),
sortColumn: this.sortColumn,
sortMethod: 'score',
topics: [],