From c323d416da19ce4f4b6abab68f3cbeda609d4009 Mon Sep 17 00:00:00 2001 From: Dillon Date: Thu, 1 Jun 2023 18:58:29 +0800 Subject: [PATCH] Fix double loading icons showing when validating voucher --- .../bookings/forms/BookingPaymentQuotationComponent.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/assets/vue/components/bookings/forms/BookingPaymentQuotationComponent.vue b/resources/assets/vue/components/bookings/forms/BookingPaymentQuotationComponent.vue index fcaf8390..5bfd1152 100644 --- a/resources/assets/vue/components/bookings/forms/BookingPaymentQuotationComponent.vue +++ b/resources/assets/vue/components/bookings/forms/BookingPaymentQuotationComponent.vue @@ -663,7 +663,7 @@ amount: this.amount }; if(this.voucherCode.trim() !== ''){ - this.submit(route('api.voucher.validate'), 'post', this.section, false, false); + this.submit(route('api.voucher.validate'), 'post', '', false, false); } else{ this.voucherValidated = true;