From fd0d29c514dd94dd32a8f47971a8638f46e0cbd0 Mon Sep 17 00:00:00 2001 From: Zeffut Date: Sat, 23 May 2026 02:04:42 +0200 Subject: [PATCH] fix(thread): pass i18n values via correct prop name (#6141) ConversationThread used :message-values="..." which doesn't match any declared prop on IntlFormatted (it declares values, camelCase). The {projectTitle} placeholder inside the slot was therefore undefined, causing intl-messageformat to throw and the catch branch to return the raw message with literal ... tags rendered on screen. Fix: rename :message-values to :values. All other IntlFormatted callers in the monorepo already use :values; this was the only outlier. Closes #6141. Co-Authored-By: Claude Opus 4.7 (1M context) --- apps/frontend/src/components/ui/thread/ConversationThread.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/frontend/src/components/ui/thread/ConversationThread.vue b/apps/frontend/src/components/ui/thread/ConversationThread.vue index 1146e0d1fc..f755c15d18 100644 --- a/apps/frontend/src/components/ui/thread/ConversationThread.vue +++ b/apps/frontend/src/components/ui/thread/ConversationThread.vue @@ -14,7 +14,7 @@