mirror of
https://github.com/discourse/discourse.git
synced 2025-02-05 19:11:13 +00:00
FIX: Empty query param in group-index url (#23520)
This prevents an empty `order=` query param from appearing in the URL when navigating from `/g` to a group page.
This commit is contained in:
parent
40acb9a111
commit
1fcf07be32
@ -11,7 +11,7 @@ import { popupAjaxError } from "discourse/lib/ajax-error";
|
|||||||
export default Controller.extend({
|
export default Controller.extend({
|
||||||
queryParams: ["order", "asc", "filter"],
|
queryParams: ["order", "asc", "filter"],
|
||||||
|
|
||||||
order: "",
|
order: null,
|
||||||
asc: true,
|
asc: true,
|
||||||
filter: null,
|
filter: null,
|
||||||
filterInput: null,
|
filterInput: null,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user