Skip to content
Snippets Groups Projects
Commit 8597f7cb authored by David Buchan-Swanson's avatar David Buchan-Swanson Committed by Tom Robinson
Browse files

update password complexity statement for more accuracy (#11041)

The current text implies that a password must be _exactly_
`complexity.total` length, whereas that is actually the minimum length.
parent 2853a41b
Branches
Tags
No related merge requests found
......@@ -117,8 +117,8 @@ const MetabaseSettings = {
const description =
capitalize === false
? t`must be` + " " + complexity.total + " " + t`characters long`
: t`Must be` + " " + complexity.total + " " + t`characters long`;
? t`must be at least ${complexity.total} characters long`
: t`Must be at least ${complexity.total} characters long`;
const clauses = [];
["lower", "upper", "digit", "special"].forEach(function(clause) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment