1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-15 02:18:42 +02:00

handle credit types

This commit is contained in:
Kyle Spearrin 2019-02-23 20:34:21 -05:00
parent 0c63f65aa7
commit af2b422730

View File

@ -96,12 +96,13 @@
<tr *ngFor="let t of transactions">
<td>{{t.createdDate | date:'mediumDate'}}</td>
<td>
<span *ngIf="t.type === transactionType.Charge">{{'chargeNoun' | i18n}}</span>
<span *ngIf="t.type === transactionType.Charge || t.type === transactionType.Credit">
{{'chargeNoun' | i18n}}
</span>
<span *ngIf="t.type === transactionType.Refund">{{'refundNoun' | i18n}}</span>
</td>
<td>
<i class="fa fa-fw" *ngIf="t.type === transactionType.Charge || t.type === transactionType.Refund"
[ngClass]="{
<i class="fa fa-fw" *ngIf="t.paymentMethodType" [ngClass]="{
'fa-credit-card': t.paymentMethodType === paymentMethodType.Card,
'fa-university': t.paymentMethodType === paymentMethodType.BankAccount,
'fa-bitcoin text-warning': t.paymentMethodType === paymentMethodType.BitPay,