diff --git a/src/angular/pipes/color-password.pipe.ts b/src/angular/pipes/color-password.pipe.ts index f5de7967e52..96c4d497cde 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; }