Sync Input component from feat/attachments branch (#7782)

This commit is contained in:
NFish
2024-08-29 11:23:16 +08:00
committed by GitHub
parent 62f4801523
commit ad30668eb6
6 changed files with 78 additions and 38 deletions

View File

@@ -73,7 +73,7 @@ const KeyValueItem: FC<Props> = ({
<Input
className='rounded-none bg-white border-none system-sm-regular focus:ring-0 focus:bg-gray-100! hover:bg-gray-50'
value={payload.key}
onChange={handleChange('key')}
onChange={e => handleChange('key')(e.target.value)}
/>
)}
</div>