Skip to content
Snippets Groups Projects
Commit 19ed2e6c authored by Ryan Senior's avatar Ryan Senior
Browse files

Remove the double encoding of the collection's slug

Fixes #5108
parent 835dae9c
No related branches found
No related tags found
No related merge requests found
......@@ -68,7 +68,7 @@ export function tableRowsQuery(databaseId, tableId, metricId, segmentId) {
}
export function collection(collection) {
return `/questions/collections/${encodeURIComponent(collection.slug)}`;
return `/questions/collections/${collection.slug}`;
}
export function label(label) {
......
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