From 324d0405a81309a87982164e0231503eccbd20da Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Thu, 12 Feb 2026 19:04:40 -0700 Subject: [PATCH] processing --- web/public/locales/en/views/chat.json | 3 ++- web/src/pages/Chat.tsx | 5 +++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/web/public/locales/en/views/chat.json b/web/public/locales/en/views/chat.json index d85fdb4ac..29078ff54 100644 --- a/web/public/locales/en/views/chat.json +++ b/web/public/locales/en/views/chat.json @@ -1,4 +1,5 @@ { "placeholder": "Ask anything...", - "error": "Something went wrong. Please try again." + "error": "Something went wrong. Please try again.", + "processing": "Processing..." } diff --git a/web/src/pages/Chat.tsx b/web/src/pages/Chat.tsx index f8802da45..65c270d39 100644 --- a/web/src/pages/Chat.tsx +++ b/web/src/pages/Chat.tsx @@ -60,6 +60,11 @@ export default function ChatPage() { {msg.content} ))} + {isLoading && ( +
+ {t("processing")} +
+ )} {error && (

{error}