mirror of
https://github.com/ant-design/ant-design.git
synced 2025-01-18 22:36:31 +08:00
✅ fix snapshots
This commit is contained in:
parent
3f1be96866
commit
990ab8833a
@ -3,14 +3,14 @@
|
||||
exports[`Input should support maxLength 1`] = `
|
||||
<Input
|
||||
disabled={false}
|
||||
maxLength="3"
|
||||
maxLength={3}
|
||||
type="text"
|
||||
>
|
||||
<Consumer>
|
||||
<input
|
||||
className="ant-input"
|
||||
disabled={false}
|
||||
maxLength="3"
|
||||
maxLength={3}
|
||||
onKeyDown={[Function]}
|
||||
type="text"
|
||||
/>
|
||||
@ -343,12 +343,12 @@ exports[`TextArea should support disabled 1`] = `
|
||||
|
||||
exports[`TextArea should support maxLength 1`] = `
|
||||
<TextArea
|
||||
maxLength="10"
|
||||
maxLength={10}
|
||||
>
|
||||
<Consumer>
|
||||
<textarea
|
||||
className="ant-input"
|
||||
maxLength="10"
|
||||
maxLength={10}
|
||||
onChange={[Function]}
|
||||
onKeyDown={[Function]}
|
||||
style={Object {}}
|
||||
|
Loading…
Reference in New Issue
Block a user