0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-24 23:48:13 -05:00

🐛 Fixed searchParam query param errors when deleting member labels

no issue

- error was "You passed the `searchParam` query parameter during a transition into members, please update to search"
- this was caused by the `reset-query-params` helper specifying `searchParam` as the query parameter which is the controller property name, not the query param name
This commit is contained in:
Kevin Ansfield 2020-06-09 08:48:45 +01:00
parent 3328a5f1ba
commit 6c9aad0f5b

View file

@ -15,7 +15,7 @@ export const DEFAULT_QUERY_PARAMS = {
},
'members.index': {
label: null,
searchParam: ''
search: ''
}
};