1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-06 00:13:28 +00:00

remove brand from logic that determines if the card section should show (#10871)

This commit is contained in:
Nick Krantz
2024-09-04 11:44:52 -05:00
committed by GitHub
parent 6edc3edb9a
commit 72dab94216

View File

@@ -70,8 +70,8 @@ export class CipherViewComponent implements OnInit, OnDestroy {
}
get hasCard() {
const { cardholderName, code, expMonth, expYear, brand, number } = this.cipher.card;
return cardholderName || code || expMonth || expYear || brand || number;
const { cardholderName, code, expMonth, expYear, number } = this.cipher.card;
return cardholderName || code || expMonth || expYear || number;
}
get hasLogin() {