Skip to content

Commit

Permalink
perf: The maximum length of the randomly generated password is change…
Browse files Browse the repository at this point in the history
…d to 36
  • Loading branch information
feng626 committed Sep 25, 2024
1 parent e8e5975 commit e82ec68
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/Form/FormFields/PasswordRule.vue
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export default {
type: 'input-number',
el: {
min: 8,
max: 30
max: 36
}
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default {
initial: {
is_periodic: false,
password_rules: {
length: 16
length: 36
},
interval: 24,
accounts: [],
Expand Down
2 changes: 1 addition & 1 deletion src/views/accounts/AccountPush/AccountPushCreateUpdate.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default {
initial: {
is_periodic: false,
password_rules: {
length: 30
length: 36
},
interval: 24,
secret_type: 'password',
Expand Down

0 comments on commit e82ec68

Please sign in to comment.