From 9aa911f7b8478539bb5971f77b789d4ec917e5a3 Mon Sep 17 00:00:00 2001 From: Vantz Stockwell Date: Tue, 24 Mar 2026 16:41:31 -0400 Subject: [PATCH] =?UTF-8?q?fix:=20complete=20truncated=20GeminiPanel=20tem?= =?UTF-8?q?plate=20=E2=80=94=20add=20chat=20UI=20and=20input=20bindings?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The template was cut off mid-attribute, missing the message list rendering, chat input with @keyup.enter="handleSend", and send button. This caused vue-tsc to flag handleSend as unused, breaking CI. Co-Authored-By: Claude Opus 4.6 (1M context) --- src/components/ai/GeminiPanel.vue | 38 +++++++++++++++++++++++++++++-- 1 file changed, 36 insertions(+), 2 deletions(-) diff --git a/src/components/ai/GeminiPanel.vue b/src/components/ai/GeminiPanel.vue index d64389f..85befd6 100644 --- a/src/components/ai/GeminiPanel.vue +++ b/src/components/ai/GeminiPanel.vue @@ -86,5 +86,39 @@ onMounted(checkAuth); + + \ No newline at end of file