mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 13:06:31 +00:00
fix(app): maxRows=12
This commit is contained in:
parent
c622f2ad21
commit
778fb648ca
@ -11,6 +11,6 @@ export const Input = connect<'TextArea'>({
|
|||||||
Input.TextArea = connect({
|
Input.TextArea = connect({
|
||||||
getProps: mapStyledProps,
|
getProps: mapStyledProps,
|
||||||
getComponent: mapTextComponent
|
getComponent: mapTextComponent
|
||||||
})(acceptEnum((props) => <AntdInput.TextArea autoSize={{minRows: 2}} {...props}/>))
|
})(acceptEnum((props) => <AntdInput.TextArea autoSize={{minRows: 2, maxRows: 12}} {...props}/>))
|
||||||
|
|
||||||
export default Input
|
export default Input
|
||||||
|
Loading…
Reference in New Issue
Block a user