Updated url query param encoding to exctly match angular encoding

This commit is contained in:
Torkel Ödegaard
2019-01-26 12:05:37 +01:00
parent f3dc5381ee
commit 0975f816aa
3 changed files with 22 additions and 3 deletions

View File

@@ -84,7 +84,7 @@ export async function getExploreUrl(
}
const exploreState = JSON.stringify(state);
url = renderUrl('/explore', { state: exploreState });
url = renderUrl('/explore', { left: exploreState });
}
return url;
}