From 00328d04cdf75b85713ace8b970fc683b945ea40 Mon Sep 17 00:00:00 2001 From: Geometrically <18202329+Geometrically@users.noreply.github.com> Date: Wed, 10 Apr 2024 18:31:05 -0700 Subject: [PATCH] Add messages to checklist (#1676) --- components/ui/ModerationChecklist.vue | 48 ++++++++++++++++++--------- pages/[type]/[id].vue | 11 ++++++ 2 files changed, 43 insertions(+), 16 deletions(-) diff --git a/components/ui/ModerationChecklist.vue b/components/ui/ModerationChecklist.vue index 800784f51..15e25d6fd 100644 --- a/components/ui/ModerationChecklist.vue +++ b/components/ui/ModerationChecklist.vue @@ -275,7 +275,8 @@
@@ -740,6 +748,7 @@ import { PlusIcon, Checkbox, ChartIcon, + EyeIcon, renderString, isRejected, isUnderReview, @@ -1159,8 +1168,10 @@ async function copyId() { const collapsedChecklist = ref(false) const showModerationChecklist = ref(false) +const futureProjects = ref([]) if (process.client && history && history.state && history.state.showChecklist) { showModerationChecklist.value = true + futureProjects.value = history.state.projects }