input fix for chome

This commit is contained in:
2026-03-27 22:51:02 -04:00
parent f1683e2ff5
commit 7476ca5cd1
9 changed files with 1088 additions and 9 deletions

View File

@@ -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>

View File

@@ -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'}