[CP-30] Add credit card pipe (#1517)

This commit is contained in:
Oscar Hinton 2022-05-02 19:45:24 +02:00 committed by GitHub
parent 75470dc169
commit a81c3c95a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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