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) <noreply@anthropic.com>
This commit is contained in:
2026-05-22 10:37:49 -04:00
parent 7d71f126a2
commit 9d70c7be76
+1 -1
View File
@@ -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"
>
<Sparkles :size="14" />