From 371d60c6caa08801eea9f3b2efab3e6ad57205fb Mon Sep 17 00:00:00 2001 From: amansinghbais Date: Tue, 28 May 2024 18:47:34 +0530 Subject: [PATCH 1/2] Improved: added entry for ATP app in the dashboard (#113) --- .env.example | 2 +- src/assets/images/Atp.svg | 64 +++++++++++++++++++++++++++++++++++++++ src/views/Home.vue | 6 ++-- 3 files changed, 68 insertions(+), 4 deletions(-) create mode 100644 src/assets/images/Atp.svg diff --git a/.env.example b/.env.example index 504aeba..3b1b90e 100644 --- a/.env.example +++ b/.env.example @@ -4,4 +4,4 @@ VUE_APP_I18N_FALLBACK_LOCALE=en VUE_APP_LOCALES={"en": "English", "ja": "日本語", "es": "Español"} VUE_APP_CURRENCY_FORMATS={"en": {"currency": {"style": "currency","currency": "USD"}}, "ja": {"currency": {"style": "currency", "currency": "JPY"}}, "es": {"currency": {"style": "currency","currency": "ESP"}}} VUE_APP_DEFAULT_ALIAS= -VUE_APP_MAARG_LOGIN=["order-routing"] \ No newline at end of file +VUE_APP_MAARG_LOGIN=["atp", "order-routing"] \ No newline at end of file diff --git a/src/assets/images/Atp.svg b/src/assets/images/Atp.svg new file mode 100644 index 0000000..7f84173 --- /dev/null +++ b/src/assets/images/Atp.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/views/Home.vue b/src/views/Home.vue index 8ae0a9e..3ad4407 100644 --- a/src/views/Home.vue +++ b/src/views/Home.vue @@ -158,9 +158,9 @@ export default defineComponent({ resource: require('../assets/images/PreOrder.svg'), type: 'Orders' }, { - handle: 'threshold-management', - name: 'Threshold Management', - resource: require('../assets/images/Threshold.svg'), + handle: 'atp', + name: 'Available to promise', + resource: require('../assets/images/Atp.svg'), type: 'Workflow' }, { handle: 'job-manager', From d0fb37afc9745c436e70a9468360ec1e2d2d14f4 Mon Sep 17 00:00:00 2001 From: amansinghbais Date: Tue, 28 May 2024 18:51:53 +0530 Subject: [PATCH 2/2] Fixed: casing of the ATP app name (#113) --- src/views/Home.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/Home.vue b/src/views/Home.vue index 3ad4407..27b4a1f 100644 --- a/src/views/Home.vue +++ b/src/views/Home.vue @@ -159,7 +159,7 @@ export default defineComponent({ type: 'Orders' }, { handle: 'atp', - name: 'Available to promise', + name: 'Available to Promise', resource: require('../assets/images/Atp.svg'), type: 'Workflow' }, {