Add credit card pipe

This commit is contained in:
Hinton 2022-05-02 17:11:17 +02:00
parent 75470dc169
commit f5f45fad1b
2 changed files with 7 additions and 3 deletions

2
jslib

@ -1 +1 @@
Subproject commit 2e2849b4def0534f3f72b7a84c3183ab0b1589f2
Subproject commit c757cc7ab68d3e1f63b7a00ad50a7076a3248d87

View File

@ -149,8 +149,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 *ngIf="!showCardNumber" class="monospaced">{{ cipher.card.maskedNumber }}</span>
<span *ngIf="showCardNumber" class="monospaced">{{ cipher.card.number }}</span>
<span *ngIf="!showCardNumber" class="monospaced">{{
cipher.card.maskedNumber | creditCardNumber: cipher.card.brand
}}</span>
<span *ngIf="showCardNumber" class="monospaced">{{
cipher.card.number | creditCardNumber: cipher.card.brand
}}</span>
</div>
<div class="action-buttons">
<button