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

show icon for wiretransfers

This commit is contained in:
Kyle Spearrin 2019-02-25 09:22:25 -05:00
parent 4b20d3ef0a
commit 37ed53cb3c
2 changed files with 3 additions and 2 deletions

2
jslib

@ -1 +1 @@
Subproject commit d0a0da8ee9ec4869001be96bc362e537ae15f961
Subproject commit fc2f64ee367b65e35e683ece0c91c05b5fb83bc5

View File

@ -104,7 +104,8 @@
<td>
<i class="fa fa-fw" *ngIf="t.paymentMethodType" [ngClass]="{
'fa-credit-card': t.paymentMethodType === paymentMethodType.Card,
'fa-university': t.paymentMethodType === paymentMethodType.BankAccount,
'fa-university': t.paymentMethodType === paymentMethodType.BankAccount ||
t.paymentMethodType === paymentMethodType.WireTransfer,
'fa-bitcoin text-warning': t.paymentMethodType === paymentMethodType.BitPay,
'fa-paypal text-primary': t.paymentMethodType === paymentMethodType.PayPal
}"></i>