Skip to content

Commit

Permalink
Fix wrong date parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
karlomikus committed Dec 24, 2023
1 parent 209203c commit 371d4e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Settings/BillingInfo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
</thead>
<tbody>
<tr v-for="tx in billing.subscription.transactions" :key="tx.invoice_number">
<td><DateFormatter :date="billing.subscription.billed_at" format="long" /></td>
<td><DateFormatter :date="tx.billed_at" format="long" /></td>
<td>{{ new Intl.NumberFormat(userLocale, { style: "currency", currency: tx.currency }).format(tx.total / 100) }}</td>
<td>{{ tx.currency }}</td>
<td>
Expand Down

0 comments on commit 371d4e9

Please sign in to comment.