From b3983578d67869a7964953a86dec01500ec249b1 Mon Sep 17 00:00:00 2001 From: Tatjana Dehler Date: Mon, 30 Sep 2019 13:59:48 +0200 Subject: [PATCH] mgr/dashboard: fix two small typos Remove unnecessary blanks. Signed-off-by: Tatjana Dehler --- .../src/app/shared/services/user-change-password.service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pybind/mgr/dashboard/frontend/src/app/shared/services/user-change-password.service.ts b/src/pybind/mgr/dashboard/frontend/src/app/shared/services/user-change-password.service.ts index 8cf859746166..439757693f71 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/shared/services/user-change-password.service.ts +++ b/src/pybind/mgr/dashboard/frontend/src/app/shared/services/user-change-password.service.ts @@ -14,13 +14,13 @@ export class UserChangePasswordService { constructor(private i18n: I18n) {} getPasswordRulesMessage() { return this.i18n( - 'Required rules for password complexity:\n\ + 'Required rules for password complexity:\n\ - must contain at least 8 characters\n\ - cannot contain username\n\ - cannot contain any keyword used in Ceph\n\ - cannot contain any repetitive characters e.g. "aaa"\n\ - cannot contain any sequencial characters e.g. "abc"\n\ - - must consist of characters from the following groups:\n\ + - must consist of characters from the following groups:\n\ * alphabetic a-z, A-Z\n\ * numbers 0-9\n\ * special chars: !"#$%& \'()*+,-./:;<=>?@[\\]^_`{{|}}~\n\ -- 2.47.3