fix(ui): ConfigPanel 展开时隐藏快捷按钮,消除视觉重复
Trigger auto deployment for soc-langgraph / build-and-deploy (push) Failing after 20s
Deploy LangGraph UI to Azure Static Web Apps / build-and-deploy (push) Failing after 43s

工具面板(ConfigPanel)和快捷按钮(QUICK_PROMPTS)功能高度重叠,
同时展示造成"重复"感。ConfigPanel 展开时将 showQuickPrompts 设为 false,
收起时恢复显示,两套入口不再同时出现。

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
gongzhiyong
2026-04-15 01:08:53 +08:00
co-authored by Claude Sonnet 4.6
parent 671e708bb5
commit dc7d443b19
+1 -1
View File
@@ -457,7 +457,7 @@ function App() {
onSubmit={handleSubmit}
onStop={handleStop}
onPaste={handlePaste}
showQuickPrompts={activeMessages.length === 0}
showQuickPrompts={activeMessages.length === 0 && !configOpen}
/>
</div>