fix: move description field to the correct section in AIAgentConfigWorkbench

This commit is contained in:
mlogclub
2026-06-26 18:01:16 +08:00
parent 023f224d51
commit b46e0d9b7c
@@ -609,9 +609,6 @@ export function AIAgentConfigWorkbench({
/>
</FieldBlock>
</div>
<FieldBlock label="描述">
<Textarea rows={4} value={description} onChange={(event) => setDescription(event.target.value)} />
</FieldBlock>
</ConfigSection>
) : null}
@@ -680,6 +677,9 @@ export function AIAgentConfigWorkbench({
<FieldBlock label="兜底文案">
<Textarea rows={5} value={fallbackMessage} onChange={(event) => setFallbackMessage(event.target.value)} />
</FieldBlock>
<FieldBlock label="描述">
<Textarea rows={4} value={description} onChange={(event) => setDescription(event.target.value)} />
</FieldBlock>
</ConfigSection>
) : null}