mirror of https://github.com/langgenius/dify.git
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(id, value)
|
||||
}}
|
||||
className='w-8'
|
||||
className='w-[72px]'
|
||||
/>
|
||||
</div>
|
||||
<div className="flex items-center h-7 grow">
|
||||
|
|
|
|||
|
|
@ -121,7 +121,7 @@ const defaultParentChildConfig: ParentChildConfig = {
|
|||
maxLength: 500,
|
||||
},
|
||||
child: {
|
||||
delimiter: '\\n\\n',
|
||||
delimiter: '\\n',
|
||||
maxLength: 200,
|
||||
},
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue