mirror of
https://github.com/navidrome/navidrome.git
synced 2025-05-07 05:41:07 +03:00
Merge be43b996e1c8122f9ccd0451254578049a9771e5 into 4944f8035af68b823d8eaf4cb689aa6dce80f6e3
This commit is contained in:
commit
4826392af6
@ -101,8 +101,13 @@ const renderInput = ({
|
|||||||
}) => (
|
}) => (
|
||||||
<TextField
|
<TextField
|
||||||
error={!!(touched && error)}
|
error={!!(touched && error)}
|
||||||
|
inputProps={{
|
||||||
|
// mobile keyboards: suppress capitalization and correction for login related fields
|
||||||
|
autocapitalize: 'none',
|
||||||
|
autocorrect: 'off',
|
||||||
|
...inputProps,
|
||||||
|
}}
|
||||||
helperText={touched && error}
|
helperText={touched && error}
|
||||||
{...inputProps}
|
|
||||||
{...props}
|
{...props}
|
||||||
fullWidth
|
fullWidth
|
||||||
/>
|
/>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user