1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 17:23:37 +00:00

space is nbsp

This commit is contained in:
Kyle Spearrin
2019-01-01 23:11:16 -05:00
parent af4e01c238
commit e408189cf9

View File

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