From 5467b962843934851d11796f6782579b4ed70dff Mon Sep 17 00:00:00 2001 From: Nabhi Jain <98026895+coolnj4@users.noreply.github.com> Date: Sun, 20 Oct 2024 20:23:02 +0530 Subject: [PATCH 1/3] [Implemented]: Change Icon for 'Create Brokering Run' Button (#266) Changed the arrow icon (->) for the 'Create Brokering Run' button in the Order Routing app's Brokering Run page to a '+' icon. --- src/views/BrokeringRuns.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/BrokeringRuns.vue b/src/views/BrokeringRuns.vue index a5d99b9..57cc74f 100644 --- a/src/views/BrokeringRuns.vue +++ b/src/views/BrokeringRuns.vue @@ -7,7 +7,7 @@ {{ translate("New Run") }} - + From 43bc35e19699732eb0ec35fcbcc12675d603ced7 Mon Sep 17 00:00:00 2001 From: Nabhi Jain <98026895+coolnj4@users.noreply.github.com> Date: Tue, 22 Oct 2024 11:03:04 +0530 Subject: [PATCH 2/3] [Fixed]: Corrected icon for 'Create Brokering Run' button to use addOutline instead of arrowForwardOutline (#266) Reverted the incorrect icon change and updated the 'Create Brokering Run' button to use the correct 'addOutline' icon as per the issue requirements. --- src/views/BrokeringRuns.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/BrokeringRuns.vue b/src/views/BrokeringRuns.vue index 57cc74f..daf9f31 100644 --- a/src/views/BrokeringRuns.vue +++ b/src/views/BrokeringRuns.vue @@ -7,7 +7,7 @@ {{ translate("New Run") }} - + @@ -75,7 +75,7 @@ {{ translate("Create brokering run") }} - + From c7c9ba92cc562a67a3fa0feee4650e3112b666da Mon Sep 17 00:00:00 2001 From: Nabhi Jain <98026895+coolnj4@users.noreply.github.com> Date: Tue, 22 Oct 2024 11:39:20 +0530 Subject: [PATCH 3/3] removed un-used imports --- src/views/BrokeringRuns.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/BrokeringRuns.vue b/src/views/BrokeringRuns.vue index daf9f31..b34fa79 100644 --- a/src/views/BrokeringRuns.vue +++ b/src/views/BrokeringRuns.vue @@ -91,7 +91,7 @@ import { translate } from "@/i18n"; import { Group } from "@/types"; import { getDateAndTime, showToast } from "@/utils"; import { IonBadge, IonButton, IonButtons, IonCard, IonContent, IonHeader, IonIcon, IonItem, IonLabel, IonList, IonListHeader, IonPage, IonRadioGroup, IonRadio, IonSpinner, IonTitle, IonToolbar, alertController, onIonViewWillEnter, popoverController } from "@ionic/vue"; -import { addOutline, arrowForwardOutline, ellipsisVerticalOutline } from "ionicons/icons" +import { addOutline, ellipsisVerticalOutline } from "ionicons/icons" import { DateTime } from "luxon"; import { computed, ref } from "vue"; import { useRouter } from "vue-router";