Replies: 1 comment 5 replies
-
Set |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Does anybody know how to set autofocus on an
TextInput
field?I tried
autoFocus={true}
but this does not get passed through to the actual input. According to TS types it supports all props fromHTMLInputElement
but theuseInputProps
hook seems to only pass a specific selection of props through:mantine/src/mantine-core/src/Input/use-input-props.ts
Lines 73 to 82 in 322538d
The I tried to use a ref according to https://mantine.dev/core/text-input/#get-input-ref, but the current value only gets a reference to the input element after I clicked in it, which is strange.
Beta Was this translation helpful? Give feedback.
All reactions