From 474e6ce4069a437b4f8b84c095a265e85dfb8ee8 Mon Sep 17 00:00:00 2001 From: Omair Saleh Date: Mon, 27 May 2024 12:08:29 +0800 Subject: [PATCH 1/2] update express and saver SLA --- .../vue/components/bookings/forms/BookingFormComponent.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/assets/vue/components/bookings/forms/BookingFormComponent.vue b/resources/assets/vue/components/bookings/forms/BookingFormComponent.vue index 9593e940..5e15867d 100644 --- a/resources/assets/vue/components/bookings/forms/BookingFormComponent.vue +++ b/resources/assets/vue/components/bookings/forms/BookingFormComponent.vue @@ -93,8 +93,8 @@
-

The recipient can expect to receive the transfer within 1-3 working days. Explore our BANK TRANSFER (SAVER) option for a better rate!

-

Enjoy a better rate with this option! The recipient will receive the transfer after 3-5 working days..

+

The recipient can expect to receive the transfer within 3-5 working days. Explore our BANK TRANSFER (SAVER) option for a better rate!

+

Enjoy a better rate with this option! The recipient will receive the transfer after 5-7 working days..

From c45ddb0497b98e5b2d753b832b6f0a533ae5a71c Mon Sep 17 00:00:00 2001 From: Aqqil Azman Date: Wed, 29 May 2024 12:10:40 +0800 Subject: [PATCH 2/2] fixed: remark automatically updates on submit --- .../components/general/forms/RemarkCommentFormComponent.vue | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/resources/assets/vue/components/general/forms/RemarkCommentFormComponent.vue b/resources/assets/vue/components/general/forms/RemarkCommentFormComponent.vue index ed35250c..aa34a3be 100644 --- a/resources/assets/vue/components/general/forms/RemarkCommentFormComponent.vue +++ b/resources/assets/vue/components/general/forms/RemarkCommentFormComponent.vue @@ -48,11 +48,8 @@ submitForm() { this.submit(this.data ? this.route('api.remark.update', this.data.id) : this.route('api.remark.create', this.id), this.data ? 'put' : 'post', this.section, true, true); this.$emit('submit') - }, - successHandler(response){ - this.parameters.content = ''; this.closeModal(); - } + }, }, mixins: [modalFormHandler] }