Skip to content

Commit

Permalink
login view: set passwor min length to 4 to try to fix the demo admin …
Browse files Browse the repository at this point in the history
…not being accessible ..
  • Loading branch information
alexAubin committed Jul 17, 2023
1 parent d482cb8 commit 946c3e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/views/Login.vue
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export default {
return {
form: {
username: { required, alphalownum_ },
password: { required, passwordLenght: minLength(8) }
password: { required, passwordLenght: minLength(4) }
}
}
},
Expand Down

0 comments on commit 946c3e6

Please sign in to comment.