mirror of
https://github.com/immich-app/immich
synced 2026-08-15 13:03:57 +00:00
Update login_form.dart
This commit is contained in:
parent
12a19c9ce6
commit
6d159e2757
1 changed files with 2 additions and 2 deletions
|
|
@ -76,6 +76,8 @@ class LoginForm extends HookConsumerWidget {
|
||||||
final warningMessage = useState<String?>(null);
|
final warningMessage = useState<String?>(null);
|
||||||
final loginFormKey = GlobalKey<FormState>();
|
final loginFormKey = GlobalKey<FormState>();
|
||||||
final ValueNotifier<String?> serverEndpoint = useState<String?>(null);
|
final ValueNotifier<String?> serverEndpoint = useState<String?>(null);
|
||||||
|
final SmartDashesType smartDashesType;
|
||||||
|
final SmartQuotesType smartQuotesType;
|
||||||
|
|
||||||
Future<void> checkVersionMismatch() async {
|
Future<void> checkVersionMismatch() async {
|
||||||
try {
|
try {
|
||||||
|
|
@ -508,8 +510,6 @@ class LoginForm extends HookConsumerWidget {
|
||||||
focusNode: passwordFocusNode,
|
focusNode: passwordFocusNode,
|
||||||
smartDashesType: SmartDashesType.disabled,
|
smartDashesType: SmartDashesType.disabled,
|
||||||
smartQuotesType: SmartQuotesType.disabled,
|
smartQuotesType: SmartQuotesType.disabled,
|
||||||
autocorrect: false,
|
|
||||||
enableSuggestions: false,
|
|
||||||
label: context.t.password,
|
label: context.t.password,
|
||||||
hintText: context.t.login_form_password_hint,
|
hintText: context.t.login_form_password_hint,
|
||||||
keyboardAction: TextInputAction.go,
|
keyboardAction: TextInputAction.go,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue