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