forked from farhoodlabs/paperclip
Merge pull request #2651 from plind-dm/fix/clear-extra-args-config
fix(ui): use null instead of undefined when clearing extra args
This commit is contained in:
@@ -827,7 +827,7 @@ export function AgentConfigForm(props: AgentConfigFormProps) {
|
|||||||
onCommit={(v) =>
|
onCommit={(v) =>
|
||||||
isCreate
|
isCreate
|
||||||
? set!({ extraArgs: v })
|
? set!({ extraArgs: v })
|
||||||
: mark("adapterConfig", "extraArgs", v ? parseCommaArgs(v) : null)
|
: mark("adapterConfig", "extraArgs", v?.trim() ? parseCommaArgs(v) : null)
|
||||||
}
|
}
|
||||||
immediate
|
immediate
|
||||||
className={inputClass}
|
className={inputClass}
|
||||||
|
|||||||
Reference in New Issue
Block a user