From a5acea72c3dc368f7dd4da53e6e34ded5bb45401 Mon Sep 17 00:00:00 2001 From: Sebastian Krupinski Date: Sat, 8 Aug 2026 22:22:43 -0400 Subject: [PATCH] fix: allow any login name not just email Signed-off-by: Sebastian Krupinski --- core/src/views/authentication/AuthLogin.vue | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/core/src/views/authentication/AuthLogin.vue b/core/src/views/authentication/AuthLogin.vue index 67c9ac5..32acf39 100644 --- a/core/src/views/authentication/AuthLogin.vue +++ b/core/src/views/authentication/AuthLogin.vue @@ -72,9 +72,7 @@ const authInputType = computed(() => { // Validation rules const identityRules = [ - (v: string) => !!v.trim() || 'Email is required', - (v: string) => !/\s/.test(v.trim()) || 'Email must not contain spaces', - (v: string) => /.+@.+\..+/.test(v.trim()) || 'Email must be valid' + (v: string) => !!v.trim() || 'Login ID is required', ]; const authResponseRules = [ @@ -351,16 +349,15 @@ function getMethodIcon(method: AuthenticationMethod): string { v-slot="{ errors, isSubmitting }" >
- Email Address