From bb4d032ae93228ae4a0b8b4aa3901e5138e8411e Mon Sep 17 00:00:00 2001 From: Dominic Villemure Date: Sat, 18 May 2024 12:11:22 -0400 Subject: [PATCH] #42 added ordering on amount and created --- src/layouts/DefaultLayout.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/layouts/DefaultLayout.vue b/src/layouts/DefaultLayout.vue index fd6981e..338d740 100644 --- a/src/layouts/DefaultLayout.vue +++ b/src/layouts/DefaultLayout.vue @@ -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%' } ]);