From ae0e8939edf1b082389a07c4cfc3ddb96b61a88b Mon Sep 17 00:00:00 2001 From: kolaente Date: Tue, 13 May 2025 21:20:43 +0200 Subject: [PATCH] chore: set default values for optional props in Password --- frontend/src/components/input/Password.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/components/input/Password.vue b/frontend/src/components/input/Password.vue index f9b4f5936..a0a45dd1e 100644 --- a/frontend/src/components/input/Password.vue +++ b/frontend/src/components/input/Password.vue @@ -45,6 +45,7 @@ const props = withDefaults(defineProps<{ validateInitially?: boolean, validateMinLength?: boolean, }>(), { + tabindex: undefined, validateMinLength: true, })