fix: card occlusion by input bar, thread title update for existing threads
Trigger auto deployment for soc-langgraph / build-and-deploy (push) Failing after 17s
Deploy LangGraph UI to Azure Static Web Apps / build-and-deploy (push) Failing after 43s

- Add h-32 spacer before bottomRef to prevent last card from being hidden behind input bar
- Fix thread title not updating: check existing title instead of only first message

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
gongzhiyong
2026-04-14 01:11:47 +08:00
co-authored by Claude Opus 4.6
parent 182f6e358c
commit d53655c180
+4 -1
View File
@@ -567,7 +567,8 @@ function App() {
messageContent = text;
}
const isFirstMessage = activeMessages.length === 0;
const existingTitle = threads.find((t) => t.thread_id === currentThreadId)?.metadata?.title;
const isFirstMessage = activeMessages.length === 0 || !existingTitle;
const retryTool = pendingRetryToolRef.current;
pendingRetryToolRef.current = null;
@@ -1234,6 +1235,8 @@ function App() {
</div>
)}
{/* Spacer to prevent last card from being hidden behind input bar */}
<div className="h-32" />
<div ref={bottomRef} />
{/* Scroll-to-bottom floating button */}