Refactor transaction table: Disable sorting for transaction fields and streamline date formatting in the dashboard display for improved clarity and consistency.
This commit is contained in:
parent
9c4b7a307a
commit
1730c5cd81
2 changed files with 9 additions and 16 deletions
|
|
@ -192,9 +192,9 @@
|
|||
|
||||
<template v-slot:body-cell-date="props">
|
||||
<q-td :props="props">
|
||||
<div>${formatDate(props.row.transaction_time || props.row.created_at)}</div>
|
||||
<div>${formatDate(props.value)}</div>
|
||||
<div class="text-caption text-grey">
|
||||
${formatTime(props.row.transaction_time || props.row.created_at)}
|
||||
${formatTime(props.value)}
|
||||
</div>
|
||||
</q-td>
|
||||
</template>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue