1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 16:53:34 +00:00

Adding mask and toggle for Card Security Code (#5)

* Adding mask and toggle for Card Security Code

* For Card Code Mask - show same number of characters as code
This commit is contained in:
Neil Burrows
2018-06-13 17:33:26 +01:00
committed by Kyle Spearrin
parent cfad521ea8
commit 1ab6ce6ec0
2 changed files with 10 additions and 0 deletions

View File

@@ -18,6 +18,10 @@ export class CardView implements View {
// ctor
}
get maskedCode(): string {
return this.code != null ? '•'.repeat(this.code.length) : null;
}
get brand(): string {
return this._brand;
}