From e408189cf99ecc97fb5d0e03de6d4d933d558215 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Tue, 1 Jan 2019 23:11:16 -0500 Subject: [PATCH] space is nbsp --- src/angular/pipes/color-password.pipe.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/angular/pipes/color-password.pipe.ts b/src/angular/pipes/color-password.pipe.ts index f5de7967e5..96c4d497cd 100644 --- a/src/angular/pipes/color-password.pipe.ts +++ b/src/angular/pipes/color-password.pipe.ts @@ -27,6 +27,10 @@ export class ColorPasswordPipe implements PipeTransform { character = '>'; isSpecial = true; break; + case ' ': + character = ' '; + isSpecial = true; + break; default: break; }