mirror of
https://github.com/davegallant/rfd-fyi.git
synced 2026-03-03 09:36:35 +00:00
Ensure that filters with spaces in them are decoded properly
This commit is contained in:
@@ -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: [],
|
||||
|
||||
Reference in New Issue
Block a user