From 732d9416f4881669ba2529c21e91598a27a5ba57 Mon Sep 17 00:00:00 2001 From: jeremy bayse Date: Sun, 22 Mar 2026 19:49:47 +0100 Subject: [PATCH] Admin: candidate notes preview by default --- resources/js/Pages/Admin/Candidates/Show.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/js/Pages/Admin/Candidates/Show.vue b/resources/js/Pages/Admin/Candidates/Show.vue index b9e0cd9..d37c021 100644 --- a/resources/js/Pages/Admin/Candidates/Show.vue +++ b/resources/js/Pages/Admin/Candidates/Show.vue @@ -34,7 +34,7 @@ const scoreForm = useForm({ interview_score: props.candidate.interview_score || 0, }); -const isPreview = ref(false); +const isPreview = ref(true); const renderedNotes = computed(() => marked.parse(notesForm.notes || '')); const openAttempts = ref([]);