Skip to content
Snippets Groups Projects
Commit eebb8420 authored by Ryan Senior's avatar Ryan Senior Committed by GitHub
Browse files

Merge pull request #5856 from metabase/double-encode-collections

Remove the double encoding of the collection's slug
parents 771c489f 19ed2e6c
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