From 1e3e04f7d80bce7210c65035e976d7654bc07fe3 Mon Sep 17 00:00:00 2001 From: feie9456 Date: Sun, 26 Apr 2026 22:15:02 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E4=BC=98=E5=8C=96=E8=81=8A=E5=A4=A9=20?= =?UTF-8?q?UI?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Copilot --- src/App.tsx | 8 +-- src/components/app/chat-view.tsx | 108 +++++++++++++++---------------- 2 files changed, 58 insertions(+), 58 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 27d8eb6..450bccf 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -464,7 +464,7 @@ function AppContent() { return undefined } - const timeoutId = window.setTimeout(() => setNotice(null), 2600) + const timeoutId = window.setTimeout(() => setNotice(null), 600) return () => window.clearTimeout(timeoutId) }, [notice]) @@ -1677,7 +1677,7 @@ function AppContent() { onDeleteSession={deleteSession} /> -
+
- {isUserMessage ? ( - - ) : null} - - -
- ) : null} + {!editing ? ( +
+ + {isUserMessage ? ( + + ) : null} + + +
+ ) : null} ) }