From 415d0858e8c36ce4ef0219fad891c51579d0b7de Mon Sep 17 00:00:00 2001 From: Beaudan Date: Tue, 11 Dec 2018 13:28:25 +1100 Subject: [PATCH] Allow spaces in password --- app/password_util.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/password_util.js b/app/password_util.js index d3bbaa44d..def0b90bb 100644 --- a/app/password_util.js +++ b/app/password_util.js @@ -20,7 +20,7 @@ const validatePassword = (phrase, i18n) => { } // Restrict characters to letters, numbers and symbols - const characterRegex = /^[a-zA-Z0-9-!()._`~@#$%^&*+=[\]{}|<>,;:]+$/ + const characterRegex = /^[a-zA-Z0-9-!()._`~@#$%^&*+=[\]{}|<>,;: ]+$/ if (!characterRegex.test(trimmed)) { return i18n ? i18n('passwordCharacterError') : ERRORS.CHARACTER; }