fix: input number width & default value for child delimiter

This commit is contained in:
AkaraChen 2024-12-17 14:12:34 +08:00
parent 1e2ca1aa7b
commit 175f5fe6af
2 changed files with 2 additions and 2 deletions

View File

@ -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">

View File

@ -121,7 +121,7 @@ const defaultParentChildConfig: ParentChildConfig = {
maxLength: 500,
},
child: {
delimiter: '\\n\\n',
delimiter: '\\n',
maxLength: 200,
},
}