1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-04 05:08:06 +02: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;
}