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:
padreug 2025-06-22 17:15:18 +02:00
parent 9c4b7a307a
commit 1730c5cd81
2 changed files with 9 additions and 16 deletions

View file

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