Skip to content

Commit

Permalink
Update resources/js/components/ChargesTable.vue
Browse files Browse the repository at this point in the history
Co-authored-by: Matt Stauffer <mattstauffer@users.noreply.github.com>
  • Loading branch information
faxblaster and mattstauffer authored Jul 26, 2021
1 parent 49ba2f4 commit 04b4a0c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions resources/js/components/ChargesTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,7 @@
<td>{{ charge.currency | money(charge.amount) }}</td>
<td>{{ charge.created | date }}</td>
<td>
<span v-if="! charge.refunded" class="rounded-lg px-3 py-1 capitalize text-xs font-black" :class="statusClass(charge.status)">{{ charge.status }}</span>
<span v-else class="rounded-lg px-3 py-1 capitalize text-xs font-black bg-40 text-80">Refunded</span>
<span class="rounded-lg px-3 py-1 capitalize text-xs font-black" :class="statusClass(charge.status)">{{ charge.refunded ? 'Refunded' : charge.status }}</span>
</td>
<td>
<span>
Expand Down

0 comments on commit 04b4a0c

Please # to comment.