Disable smart dashes and quotes in password input

This commit is contained in:
ihmcsm 2026-08-14 23:06:49 +10:00 committed by GitHub
parent 652ef8a427
commit 12a19c9ce6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -506,6 +506,10 @@ class LoginForm extends HookConsumerWidget {
ImmichPasswordInput(
controller: passwordController,
focusNode: passwordFocusNode,
smartDashesType: SmartDashesType.disabled,
smartQuotesType: SmartQuotesType.disabled,
autocorrect: false,
enableSuggestions: false,
label: context.t.password,
hintText: context.t.login_form_password_hint,
keyboardAction: TextInputAction.go,