Enhance transaction history display: Update SQL query and model to include transaction time
This commit is contained in:
parent
3d0fc9c910
commit
79d29f52a1
3 changed files with 4 additions and 2 deletions
|
|
@ -154,7 +154,7 @@
|
|||
<q-item v-for="tx in transactions" :key="tx.id">
|
||||
<q-item-section>
|
||||
<q-item-label>${formatSats(tx.amount_sats)}</q-item-label>
|
||||
<q-item-label caption>${formatCurrency(tx.amount_fiat)} • ${formatDate(tx.created_at)}</q-item-label>
|
||||
<q-item-label caption>${formatCurrency(tx.amount_fiat)} • ${formatDate(tx.transaction_time || tx.created_at)}</q-item-label>
|
||||
</q-item-section>
|
||||
<q-item-section side>
|
||||
<q-chip
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue