fix(web): ui upgrade

This commit is contained in:
zhaoying
2026-03-25 13:58:25 +08:00
parent 9df41456f6
commit 2b9fd33bc8
42 changed files with 223 additions and 191 deletions

View File

@@ -29,7 +29,7 @@ const ModelConfig: FC = () => {
{model_id && (
<RbCard
title={t('workflow.config.llm.parameterSettings')}
headerClassName="rb:min-h-8! rb:mx-2!"
headerClassName="rb:min-h-8! rb:mx-2! rb:text-[12px]!"
bodyClassName="rb:pt-[14px]! rb:px-2! rb:pb-2!"
className="rb-border! rb:mb-4!"
variant="outlined"

View File

@@ -212,10 +212,11 @@ const ToolConfig: FC<{ options: Suggestion[]; }> = ({
onChange={(value) => form.setFieldValue(['tool_parameters', parameter.name], value)}
/>
: <Editor
height={32}
variant="outlined"
options={options}
type="input"
size="small"
height={28}
options={options}
placeholder={t('common.pleaseEnter')}
/>
}