fix(ui): ConfigPanel 展开时隐藏快捷按钮,消除视觉重复
工具面板(ConfigPanel)和快捷按钮(QUICK_PROMPTS)功能高度重叠, 同时展示造成"重复"感。ConfigPanel 展开时将 showQuickPrompts 设为 false, 收起时恢复显示,两套入口不再同时出现。 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Sonnet 4.6
parent
671e708bb5
commit
dc7d443b19
@@ -457,7 +457,7 @@ function App() {
|
||||
onSubmit={handleSubmit}
|
||||
onStop={handleStop}
|
||||
onPaste={handlePaste}
|
||||
showQuickPrompts={activeMessages.length === 0}
|
||||
showQuickPrompts={activeMessages.length === 0 && !configOpen}
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user