space is nbsp

This commit is contained in:
Kyle Spearrin 2019-01-01 23:11:16 -05:00
parent af4e01c238
commit e408189cf9
1 changed files with 4 additions and 0 deletions

View File

@ -27,6 +27,10 @@ export class ColorPasswordPipe implements PipeTransform {
character = '>';
isSpecial = true;
break;
case ' ':
character = ' ';
isSpecial = true;
break;
default:
break;
}