Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/app/pages/auth/ServerPicker.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,11 @@ export function ServerPicker({
size="500"
readOnly={!allowCustomServer}
onClick={allowCustomServer ? undefined : handleOpenServerMenu}
// disable auto-capitalization, which is usually undesirable for server name input.
autoCapitalize="off"
// disable spell-check and auto-correction
spellCheck={false}
autoCorrect="off"
after={
serverList.length === 0 || (serverList.length === 1 && !allowCustomServer) ? undefined : (
<PopOut
Expand Down
5 changes: 5 additions & 0 deletions src/app/pages/auth/login/PasswordLoginForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,11 @@ export function PasswordLoginForm({ defaultUsername, defaultEmail }: PasswordLog
size="500"
required
outlined
// disable auto-capitalization, which is usually undesirable for username input.
autoCapitalize="off"
// disable spell-check and auto-correction
spellCheck={false}
autoCorrect="off"
after={<UsernameHint server={server} />}
/>
{loginState.status === AsyncStatus.Error && (
Expand Down