From 8624ee9d83dd502cf4b9a6d31f9bd2dd41bc7997 Mon Sep 17 00:00:00 2001 From: Sebastian Krupinski Date: Tue, 28 Jul 2026 20:52:46 -0400 Subject: [PATCH] fix: disable auto complete Signed-off-by: Sebastian Krupinski --- src/components/ImapAuthPanel.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/ImapAuthPanel.vue b/src/components/ImapAuthPanel.vue index 28670f2..05b4aba 100644 --- a/src/components/ImapAuthPanel.vue +++ b/src/components/ImapAuthPanel.vue @@ -115,7 +115,7 @@ function sameIdentity(a: ServiceIdentity | null, b: ServiceIdentity | null): boo variant="outlined" prepend-inner-icon="mdi-account" class="mb-4" - autocomplete="username" + autocomplete="off" autocorrect="off" autocapitalize="none" :rules="[rules.required]" @@ -130,7 +130,7 @@ function sameIdentity(a: ServiceIdentity | null, b: ServiceIdentity | null): boo variant="outlined" prepend-inner-icon="mdi-lock" class="mb-4" - autocomplete="current-password" + autocomplete="new-password" :rules="[rules.required]" />