fix(style): document list

This commit is contained in:
jialin
2024-10-14 10:40:13 +08:00
parent 2b61e3dfd3
commit ec68ce082e
4 changed files with 7 additions and 4 deletions
@@ -70,7 +70,7 @@ const InputList: React.FC<InputListProps> = ({ textList, onChange }) => {
<div key={text.uid} className="input-item">
<div className="input-wrap">
<RowTextarea
label={`Text ${index + 1}`}
label={`${index + 1}.`}
value={text.text}
onChange={(e) => handleTextChange(e.target.value, text)}
></RowTextarea>