Skip to content

Commit

Permalink
Merge pull request #2599 from PrefectHQ/fix/work-queue-route-blank-in…
Browse files Browse the repository at this point in the history
…-production

Fix route path is a Promise instead of a function that returns a Promise
  • Loading branch information
collincchoy authored Jul 10, 2024
2 parents 8653b53 + 902419d commit 28755e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/router/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ export function createWorkspaceRouteRecords(components: Partial<WorkspaceRouteCo
{
name: 'workspace.work-queues.work-queue',
path: 'work-queue/:workQueueId',
component: components.workQueue ?? import('@/components/WorkQueueToWorkPoolQueueRedirect.vue'),
component: components.workQueue ?? (() => import('@/components/WorkQueueToWorkPoolQueueRedirect.vue')),
},
],
},
Expand Down

0 comments on commit 28755e0

Please sign in to comment.