Merge branch 'autofill' into 'develop'
Restore autocomplete in some cases See merge request soapbox-pub/soapbox-fe!1662
This commit is contained in:
commit
d32b6bca83
|
@ -37,7 +37,6 @@ const LoginForm: React.FC<ILoginForm> = ({ isLoading, handleSubmit }) => {
|
||||||
placeholder={intl.formatMessage(messages.username)}
|
placeholder={intl.formatMessage(messages.username)}
|
||||||
type='text'
|
type='text'
|
||||||
name='username'
|
name='username'
|
||||||
autoComplete='off'
|
|
||||||
autoCorrect='off'
|
autoCorrect='off'
|
||||||
autoCapitalize='off'
|
autoCapitalize='off'
|
||||||
required
|
required
|
||||||
|
|
|
@ -51,7 +51,6 @@ const ExternalLoginForm: React.FC = () => {
|
||||||
type='text'
|
type='text'
|
||||||
name='host'
|
name='host'
|
||||||
onChange={handleHostChange}
|
onChange={handleHostChange}
|
||||||
autoComplete='off'
|
|
||||||
autoCorrect='off'
|
autoCorrect='off'
|
||||||
autoCapitalize='off'
|
autoCapitalize='off'
|
||||||
required
|
required
|
||||||
|
|
|
@ -132,7 +132,6 @@ const Header = () => {
|
||||||
type='text'
|
type='text'
|
||||||
placeholder={intl.formatMessage(messages.username)}
|
placeholder={intl.formatMessage(messages.username)}
|
||||||
className='max-w-[200px]'
|
className='max-w-[200px]'
|
||||||
autoComplete='off'
|
|
||||||
autoCorrect='off'
|
autoCorrect='off'
|
||||||
autoCapitalize='off'
|
autoCapitalize='off'
|
||||||
/>
|
/>
|
||||||
|
|
Loading…
Reference in New Issue