input fix for chome
This commit is contained in:
@@ -386,6 +386,10 @@ export default function MessageInput({ group, replyTo, onCancelReply, onSend, on
|
||||
onKeyDown={handleKeyDown}
|
||||
onFocus={onInputFocus}
|
||||
rows={1}
|
||||
autoComplete="off"
|
||||
autoCorrect="off"
|
||||
autoCapitalize="sentences"
|
||||
spellCheck="true"
|
||||
style={{ resize: 'none' }} />
|
||||
</div>
|
||||
|
||||
|
||||
@@ -12,6 +12,10 @@ export default function PasswordInput({ className, style, wrapperStyle, ...input
|
||||
return (
|
||||
<div style={{ position: 'relative', display: 'flex', alignItems: 'center', ...wrapperStyle }}>
|
||||
<input
|
||||
autoComplete="new-password"
|
||||
autoCorrect="off"
|
||||
autoCapitalize="off"
|
||||
spellCheck="false"
|
||||
{...inputProps}
|
||||
type={show ? 'text' : 'password'}
|
||||
className={className ?? 'input'}
|
||||
|
||||
Reference in New Issue
Block a user