From e7d83d63188f649c965a2cc3e6e9ef210b6d5fca Mon Sep 17 00:00:00 2001 From: Disha Talreja Date: Fri, 3 Mar 2023 12:07:15 +0530 Subject: [PATCH] fix: Use ion-list in modals(#85zrptxr9) --- src/components/BulkAdjustmentModal.vue | 46 ++++++++++--------- .../BulkInventoryAdjustmentModal.vue | 24 ++++++---- src/components/MissingFacilitiesModal.vue | 23 ++++++---- src/components/ProductPopover.vue | 30 ++++++------ 4 files changed, 69 insertions(+), 54 deletions(-) diff --git a/src/components/BulkAdjustmentModal.vue b/src/components/BulkAdjustmentModal.vue index 10f3352f..824e7062 100644 --- a/src/components/BulkAdjustmentModal.vue +++ b/src/components/BulkAdjustmentModal.vue @@ -11,30 +11,32 @@ - - {{ $t("Buffer days") }} - - + + + {{ $t("Buffer days") }} + + - - {{ $t("Order buffer") }} - - + + {{ $t("Order buffer") }} + + - - {{ $t("Catalog") }} - - {{ $t("Backorder") }} - {{ $t("Preorder") }} - - + + {{ $t("Catalog") }} + + {{ $t("Backorder") }} + {{ $t("Preorder") }} + + - - {{ $t("Facility") }} - - {{ facility.facilityName }} - - + + {{ $t("Facility") }} + + {{ facility.facilityName }} + + + @@ -55,6 +57,7 @@ import { IonIcon, IonInput, IonLabel, + IonList, IonSelect, IonSelectOption, IonTitle, @@ -81,6 +84,7 @@ export default defineComponent({ IonItem, IonInput, IonLabel, + IonList, IonSelect, IonSelectOption, IonTitle, diff --git a/src/components/BulkInventoryAdjustmentModal.vue b/src/components/BulkInventoryAdjustmentModal.vue index 4a727496..685eebae 100644 --- a/src/components/BulkInventoryAdjustmentModal.vue +++ b/src/components/BulkInventoryAdjustmentModal.vue @@ -11,17 +11,19 @@ - - {{ $t("Buffer quantity") }} - - + + + {{ $t("Buffer quantity") }} + + - - {{ $t("Facility") }} - - {{ facility.facilityName }} - - + + {{ $t("Facility") }} + + {{ facility.facilityName }} + + + @@ -42,6 +44,7 @@ import { IonIcon, IonInput, IonLabel, + IonList, IonSelect, IonSelectOption, IonTitle, @@ -67,6 +70,7 @@ export default defineComponent({ IonItem, IonInput, IonLabel, + IonList, IonSelect, IonSelectOption, IonTitle, diff --git a/src/components/MissingFacilitiesModal.vue b/src/components/MissingFacilitiesModal.vue index 1d4c812d..1a36a596 100644 --- a/src/components/MissingFacilitiesModal.vue +++ b/src/components/MissingFacilitiesModal.vue @@ -11,16 +11,17 @@ - - - - {{ facilityId }} -

{{ items?.length }} {{ $t("line items") }}

-
- - {{ facility.facilityName }} - -
+ + + + {{ facilityId }} +

{{ items?.length }} {{ $t("line items") }}

+
+ + {{ facility.facilityName }} + +
+
@@ -41,6 +42,7 @@ import { IonItem, IonIcon, IonLabel, + IonList, IonSelect, IonSelectOption, IonTitle, @@ -65,6 +67,7 @@ export default defineComponent({ IonIcon, IonItem, IonLabel, + IonList, IonSelect, IonSelectOption, IonTitle, diff --git a/src/components/ProductPopover.vue b/src/components/ProductPopover.vue index 738f15da..ffae3325 100644 --- a/src/components/ProductPopover.vue +++ b/src/components/ProductPopover.vue @@ -1,21 +1,25 @@