From 56163473d8c9b918d6378d76e02321a6e68e391a Mon Sep 17 00:00:00 2001 From: Torben Haack Date: Fri, 10 Apr 2026 22:16:44 +0200 Subject: [PATCH] fix: add ignore attributes for password managers to command palette --- app/components/CommandPalette.client.vue | 1 + app/components/Input/Base.vue | 15 +++++++++++++-- app/utils/input.ts | 12 ++++++++++++ 3 files changed, 26 insertions(+), 2 deletions(-) diff --git a/app/components/CommandPalette.client.vue b/app/components/CommandPalette.client.vue index f8d767ac5f..311b31ac54 100644 --- a/app/components/CommandPalette.client.vue +++ b/app/components/CommandPalette.client.vue @@ -324,6 +324,7 @@ useEventListener(document, 'keydown', handleGlobalKeydown) type="text" :placeholder="viewMeta.placeholder" no-correct + no-password-manager size="lg" class="w-full" :aria-describedby="inputDescribedBy" diff --git a/app/components/Input/Base.vue b/app/components/Input/Base.vue index e3f7edccdc..407abdad70 100644 --- a/app/components/Input/Base.vue +++ b/app/components/Input/Base.vue @@ -1,5 +1,5 @@