Skip to content
Snippets Groups Projects
Commit c93de715 authored by Tarje.Lavik's avatar Tarje.Lavik
Browse files

Fix missing basePath in manifest query

parent ce63bcef
No related branches found
No related tags found
No related merge requests found
......@@ -54,7 +54,7 @@ export const routeQuery = groq`
"manifest": coalesce(
manifestRef->.subjectOfManifest,
manifestUrl,
"/api/manifest/" + manifestRef->._id
"${basePath}/api/manifest/" + manifestRef->._id
),
canvasUrl,
},
......@@ -139,7 +139,7 @@ export const routeQuery = groq`
"manifest": coalesce(
manifestRef->.subjectOfManifest,
manifestUrl,
"/api/manifest/" + manifestRef->._id
"${basePath}/api/manifest/" + manifestRef->._id
),
canvasUrl,
},
......@@ -192,7 +192,7 @@ export const routeQuery = groq`
"manifest": coalesce(
manifestRef->.subjectOfManifest,
manifestUrl,
"/api/manifest/" + manifestRef->._id
"${basePath}/api/manifest/" + manifestRef->._id
),
canvasUrl,
},
......
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