mirror of
https://github.com/langgenius/dify.git
synced 2026-04-28 03:36:36 +08:00
fix: input number width & default value for child delimiter
This commit is contained in:
parent
1e2ca1aa7b
commit
175f5fe6af
@ -59,7 +59,7 @@ const ParamItem: FC<Props> = ({ className, id, name, noTooltip, tip, step = 0.1,
|
|||||||
onChange={(value) => {
|
onChange={(value) => {
|
||||||
onChange(id, value)
|
onChange(id, value)
|
||||||
}}
|
}}
|
||||||
className='w-8'
|
className='w-[72px]'
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div className="flex items-center h-7 grow">
|
<div className="flex items-center h-7 grow">
|
||||||
|
|||||||
@ -121,7 +121,7 @@ const defaultParentChildConfig: ParentChildConfig = {
|
|||||||
maxLength: 500,
|
maxLength: 500,
|
||||||
},
|
},
|
||||||
child: {
|
child: {
|
||||||
delimiter: '\\n\\n',
|
delimiter: '\\n',
|
||||||
maxLength: 200,
|
maxLength: 200,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user