From 1d7e9045e3f1466af7e8915cf1b4f608a26550a0 Mon Sep 17 00:00:00 2001 From: Dillon Ngo Date: Sat, 22 Jun 2024 14:46:48 +0800 Subject: [PATCH] Fix a problem in merge conflict done wrong --- .../elements/CustomerTransactionHistorySectionComponent.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/assets/vue/components/bookings/elements/CustomerTransactionHistorySectionComponent.vue b/resources/assets/vue/components/bookings/elements/CustomerTransactionHistorySectionComponent.vue index f2651b67..e80cf976 100644 --- a/resources/assets/vue/components/bookings/elements/CustomerTransactionHistorySectionComponent.vue +++ b/resources/assets/vue/components/bookings/elements/CustomerTransactionHistorySectionComponent.vue @@ -13,7 +13,7 @@
@@ -128,8 +128,8 @@ export default { this.key ++; }, - downloadTransaction(paramItem, paramShowingPreciseAmount) { - let url = this.route('company.transaction.export', paramItem.id, paramShowingPreciseAmount); + downloadTransaction(paramId, paramShowingPreciseAmount) { + let url = this.route('company.transaction.export', paramId, paramShowingPreciseAmount); if(window.LARAVEL_VAPOR_ENABLED){ return fetch(url, { method: 'GET',