From 946c3e61e6b32a00cd0b8abae507d3c51812b95c Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Mon, 17 Jul 2023 15:52:17 +0200 Subject: [PATCH] login view: set passwor min length to 4 to try to fix the demo admin not being accessible .. --- app/src/views/Login.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/views/Login.vue b/app/src/views/Login.vue index c4a5e6f01..85e8f582e 100644 --- a/app/src/views/Login.vue +++ b/app/src/views/Login.vue @@ -67,7 +67,7 @@ export default { return { form: { username: { required, alphalownum_ }, - password: { required, passwordLenght: minLength(8) } + password: { required, passwordLenght: minLength(4) } } } },