fix: move description field to the correct section in AIAgentConfigWorkbench
This commit is contained in:
@@ -609,9 +609,6 @@ export function AIAgentConfigWorkbench({
|
|||||||
/>
|
/>
|
||||||
</FieldBlock>
|
</FieldBlock>
|
||||||
</div>
|
</div>
|
||||||
<FieldBlock label="描述">
|
|
||||||
<Textarea rows={4} value={description} onChange={(event) => setDescription(event.target.value)} />
|
|
||||||
</FieldBlock>
|
|
||||||
</ConfigSection>
|
</ConfigSection>
|
||||||
) : null}
|
) : null}
|
||||||
|
|
||||||
@@ -680,6 +677,9 @@ export function AIAgentConfigWorkbench({
|
|||||||
<FieldBlock label="兜底文案">
|
<FieldBlock label="兜底文案">
|
||||||
<Textarea rows={5} value={fallbackMessage} onChange={(event) => setFallbackMessage(event.target.value)} />
|
<Textarea rows={5} value={fallbackMessage} onChange={(event) => setFallbackMessage(event.target.value)} />
|
||||||
</FieldBlock>
|
</FieldBlock>
|
||||||
|
<FieldBlock label="描述">
|
||||||
|
<Textarea rows={4} value={description} onChange={(event) => setDescription(event.target.value)} />
|
||||||
|
</FieldBlock>
|
||||||
</ConfigSection>
|
</ConfigSection>
|
||||||
) : null}
|
) : null}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user