Skip to content
Snippets Groups Projects
Commit e0729002 authored by Lewis Liu's avatar Lewis Liu
Browse files

Fixed double escaping of dashboard query parameters

parent faac4c1c
No related branches found
No related tags found
No related merge requests found
......@@ -139,7 +139,7 @@ export default class Dashboard extends Component {
.map((value, id) => ([_.findWhere(parameters, { id }), value]))
.filter(([param, value]) => (param && value))
.reduce((params, [param, value]) => ({ ...params,
[encodeURIComponent(param.slug)]: encodeURIComponent(value)
[param.slug]: value
}), {})
.value();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment