mirror of
https://github.com/bitwarden/browser
synced 2025-01-01 04:38:20 +01:00
show refunded status
This commit is contained in:
parent
fe1c5b4b38
commit
93cec9a2d6
@ -180,7 +180,7 @@
|
||||
<td>{{c.createdDate | date:'mediumDate'}}</td>
|
||||
<td>{{c.paymentSource ? c.paymentSource.description : '-'}}</td>
|
||||
<td class="text-capitalize">{{c.status}}</td>
|
||||
<td>{{c.amount | currency:'$'}}</td>
|
||||
<td [ngClass]="{'text-strike':c.refunded}" title="{{(c.refunded ? 'refunded' : '') | i18n}}">{{c.amount | currency:'$'}}</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
@ -125,7 +125,7 @@
|
||||
<td>{{c.createdDate | date:'mediumDate'}}</td>
|
||||
<td>{{c.paymentSource ? c.paymentSource.description : '-'}}</td>
|
||||
<td class="text-capitalize">{{c.status}}</td>
|
||||
<td>{{c.amount | currency:'$'}}</td>
|
||||
<td [ngClass]="{'text-strike':c.refunded}" title="{{(c.refunded ? 'refunded' : '') | i18n}}">{{c.amount | currency:'$'}}</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
@ -2331,5 +2331,8 @@
|
||||
},
|
||||
"createOrganizationCreatePersonalAccount": {
|
||||
"message": "Before creating your organization, you first need to create a free personal account."
|
||||
},
|
||||
"refunded": {
|
||||
"message": "Refunded"
|
||||
}
|
||||
}
|
||||
|
@ -372,6 +372,10 @@ label:not(.form-check-label):not(.btn) {
|
||||
font-size: $font-size-lg;
|
||||
}
|
||||
|
||||
.text-strike {
|
||||
text-decoration: line-through;
|
||||
}
|
||||
|
||||
app-vault-groupings, app-org-vault-groupings {
|
||||
.card {
|
||||
#search {
|
||||
|
Loading…
Reference in New Issue
Block a user