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() {
|
data() {
|
||||||
return {
|
return {
|
||||||
ascending: this.ascending,
|
ascending: this.ascending,
|
||||||
filter: window.location.href.split("filter=")[1] || "",
|
filter: decodeURIComponent(window.location.href.split("filter=")[1] || ""),
|
||||||
sortColumn: this.sortColumn,
|
sortColumn: this.sortColumn,
|
||||||
sortMethod: 'score',
|
sortMethod: 'score',
|
||||||
topics: [],
|
topics: [],
|
||||||
|
|||||||
Reference in New Issue
Block a user