From 9d70c7be76c9d46d4564467ee8d7583d6bc29608 Mon Sep 17 00:00:00 2001 From: Bryan Van Deusen Date: Fri, 22 May 2026 10:37:49 -0400 Subject: [PATCH] fix(journal): rephrase captures-button title to avoid Vue template escape Vue's template parser doesn't handle JS-style \\' escaping inside double-quoted attribute values, so `today\\'s` produced a compiler crash during the production frontend build. Rephrased to avoid the apostrophe entirely. No functional change. Co-Authored-By: Claude Opus 4.7 (1M context) --- frontend/src/views/JournalView.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/views/JournalView.vue b/frontend/src/views/JournalView.vue index d50779a..40b4b1b 100644 --- a/frontend/src/views/JournalView.vue +++ b/frontend/src/views/JournalView.vue @@ -373,7 +373,7 @@ onMounted(async () => { class="captures-trigger-btn" :class="{ spinning: curatorRunning }" :disabled="curatorRunning || !dayConvId || !isToday" - :title="isToday ? 'Run curator on this conversation' : 'Curator only runs on today\\'s conversation'" + :title="isToday ? 'Run curator on this conversation' : 'Curator only runs on the current day'" @click="triggerCurator" >