From aa092bf27aa09ba78093f26530cc07b2d125a9a6 Mon Sep 17 00:00:00 2001 From: weichien Date: Wed, 17 Mar 2021 04:29:51 +0800 Subject: [PATCH] fix: Currency drop-down issue in Admin Currency Order. --- .../SupplierPendingOrdersSectionComponent.vue | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/resources/assets/vue/components/bookings/sections/SupplierPendingOrdersSectionComponent.vue b/resources/assets/vue/components/bookings/sections/SupplierPendingOrdersSectionComponent.vue index 78c23bdd..d91bc857 100644 --- a/resources/assets/vue/components/bookings/sections/SupplierPendingOrdersSectionComponent.vue +++ b/resources/assets/vue/components/bookings/sections/SupplierPendingOrdersSectionComponent.vue @@ -42,7 +42,7 @@
-
+
{{selectedCurrency.short_code}} @@ -50,14 +50,14 @@
- +
-
+
@@ -112,6 +112,9 @@ name: '', status: false }, + currencyDropdownLaunch: { + status: false + }, payments: [] } }, @@ -135,8 +138,7 @@ this.selectedCurrency = currency; this.$refs.pendingOrdersList.updateFilters({per_page: 10000, status: 2, type: 1, original_currency_id_in: [this.selectedCurrency.id]}); } - - this.selectedCurrency.status = false; + this.currencyDropdownLaunch.status = false; this.payments = []; },