login view: set passwor min length to 4 to try to fix the demo admin not being accessible ..

This commit is contained in:
Alexandre Aubin 2023-07-17 15:52:17 +02:00
parent d482cb8da5
commit 946c3e61e6

View file

@ -67,7 +67,7 @@ export default {
return {
form: {
username: { required, alphalownum_ },
password: { required, passwordLenght: minLength(8) }
password: { required, passwordLenght: minLength(4) }
}
}
},