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

[CP-30] Use the CreditCardNumberPipe (#2527)

This commit is contained in:
Oscar Hinton
2022-05-02 17:02:09 +02:00
committed by GitHub
parent 6bd5d579af
commit 99f6afbf5f
2 changed files with 7 additions and 3 deletions

2
jslib

Submodule jslib updated: 2e2849b4de...7e05089d73

View File

@@ -188,8 +188,12 @@
<div class="box-content-row box-content-row-flex" *ngIf="cipher.card.number">
<div class="row-main">
<span class="row-label">{{ "number" | i18n }}</span>
<span [hidden]="showCardNumber" class="monospaced">{{ cipher.card.maskedNumber }}</span>
<span [hidden]="!showCardNumber" class="monospaced">{{ cipher.card.number }}</span>
<span [hidden]="showCardNumber" class="monospaced">{{
cipher.card.maskedNumber | creditCardNumber: cipher.card.brand
}}</span>
<span [hidden]="!showCardNumber" class="monospaced">{{
cipher.card.number | creditCardNumber: cipher.card.brand
}}</span>
</div>
<div class="action-buttons">
<button