From 6b54181ad1932705ff08a258efce275d2297d65b Mon Sep 17 00:00:00 2001 From: tdgao Date: Fri, 2 Jan 2026 14:28:43 -0700 Subject: [PATCH] link with slug if exists --- .../src/components/ui/moderation/ModerationQueueCard.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/frontend/src/components/ui/moderation/ModerationQueueCard.vue b/apps/frontend/src/components/ui/moderation/ModerationQueueCard.vue index 3d34ba13de..5572027f13 100644 --- a/apps/frontend/src/components/ui/moderation/ModerationQueueCard.vue +++ b/apps/frontend/src/components/ui/moderation/ModerationQueueCard.vue @@ -204,7 +204,7 @@ function openProjectForReview() { name: 'type-id', params: { type: 'project', - id: props.queueEntry.project.id, + id: props.queueEntry.project.slug || props.queueEntry.project.id, }, state: { showChecklist: true,