1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 08:13:42 +00:00

show refunded status

This commit is contained in:
Kyle Spearrin
2018-07-20 17:20:41 -04:00
parent fe1c5b4b38
commit 93cec9a2d6
4 changed files with 9 additions and 2 deletions

View File

@@ -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>

View File

@@ -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>