1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-23 03:22:50 +02: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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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() {