Skip to content
Snippets Groups Projects
Verified Commit 7de6df64 authored by Daniel Göbel's avatar Daniel Göbel
Browse files

Fix query to props propagation

parent 5681b2ee
No related branches found
No related tags found
1 merge request!159Resolve "Fix query to props propagation for clowm info creation"
Pipeline #65630 passed
...@@ -32,8 +32,8 @@ export const workflowRoutes: RouteRecordRaw[] = [ ...@@ -32,8 +32,8 @@ export const workflowRoutes: RouteRecordRaw[] = [
name: "workflows-clowminfo", name: "workflows-clowminfo",
component: () => import("../views/workflows/CreateClowmInfoView.vue"), component: () => import("../views/workflows/CreateClowmInfoView.vue"),
props: (route) => ({ props: (route) => ({
workflow_version_id: route.query.workflow_version_id ?? undefined, workflowVersionId: route.query.workflow_version_id ?? undefined,
workflow_id: route.query.workflow_id ?? undefined, workflowId: route.query.workflow_id ?? undefined,
}), }),
meta: { meta: {
requiresDeveloperRole: true, requiresDeveloperRole: true,
......
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