Skip to content

Commit

Permalink
fix(Textarea): 修复 maxLength 设置无效的问题 (#231)
Browse files Browse the repository at this point in the history
  • Loading branch information
koppthe committed Dec 13, 2018
1 parent eef0bac commit 04909f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/textarea/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ export default class AtTextarea extends AtComponent {
className='at-textarea__textarea'
value={value}
confirmType='完成'
maxlength={actualMaxlength}
maxLength={actualMaxlength}
placeholder={placeholder}
disabled={disabled}
autoFocus={autoFocus}
Expand Down

0 comments on commit 04909f0

Please sign in to comment.