#42 added ordering on amount and created

This commit is contained in:
Dominic Villemure
2024-05-18 12:11:22 -04:00
parent 35b43a300d
commit bb4d032ae9

View File

@@ -146,8 +146,8 @@ const currentUserName = ref("INVITÉ");
let currentUser = null;
const headers = ref([
{ title: 'Montant', value: 'amount', width: '20%' },
{ title: 'Date', value: 'created', width: '20%' },
{ title: 'Montant', value: 'amount', width: '20%', key: "amount" },
{ title: 'Date', value: 'created', width: '20%', key: "created" },
{ title: 'Message', value: 'tipMessage', width: '60%' }
]);