From 67810c52c5ff9d700d4786f0e596e6462e32bedb Mon Sep 17 00:00:00 2001 From: Michaela Brydon Date: Thu, 31 Jul 2025 14:02:43 -0400 Subject: [PATCH 1/3] Forgot these --- public/index.html | 1 + .../order-confirmation/add-to-calendar/add-to-calendar.vue | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/public/index.html b/public/index.html index ae1b046e..216908f8 100644 --- a/public/index.html +++ b/public/index.html @@ -14,6 +14,7 @@ <%= htmlWebpackPlugin.options.title %> + diff --git a/src/layouts/order-confirmation/add-to-calendar/add-to-calendar.vue b/src/layouts/order-confirmation/add-to-calendar/add-to-calendar.vue index e5ee1da0..47eab0f6 100644 --- a/src/layouts/order-confirmation/add-to-calendar/add-to-calendar.vue +++ b/src/layouts/order-confirmation/add-to-calendar/add-to-calendar.vue @@ -285,7 +285,7 @@ export default { color: #1574a1; vertical-align: middle; font-weight: 500; - font-family: "AvertaRegular"; + font-family: "UrbanistRegular"; } .add-to-calendar button { border: 0; From 12a92f878d944303623af8fa0e6514de9b7c8f92 Mon Sep 17 00:00:00 2001 From: Michaela Brydon Date: Thu, 31 Jul 2025 14:10:12 -0400 Subject: [PATCH 2/3] remove needless line --- public/index.html | 1 - 1 file changed, 1 deletion(-) diff --git a/public/index.html b/public/index.html index 216908f8..ae1b046e 100644 --- a/public/index.html +++ b/public/index.html @@ -14,7 +14,6 @@ <%= htmlWebpackPlugin.options.title %> - From 981d03faaf964896c2852eb3f6db76d3b0d99556 Mon Sep 17 00:00:00 2001 From: Michaela Brydon Date: Thu, 31 Jul 2025 14:46:21 -0400 Subject: [PATCH 3/3] Removing needless font setting --- .../add-to-calendar/add-to-calendar.vue | 30 ++----------------- 1 file changed, 3 insertions(+), 27 deletions(-) diff --git a/src/layouts/order-confirmation/add-to-calendar/add-to-calendar.vue b/src/layouts/order-confirmation/add-to-calendar/add-to-calendar.vue index 47eab0f6..502337a6 100644 --- a/src/layouts/order-confirmation/add-to-calendar/add-to-calendar.vue +++ b/src/layouts/order-confirmation/add-to-calendar/add-to-calendar.vue @@ -223,35 +223,13 @@ export default { const dateFormat = 'yyyyMMddTHHmmss'; const outlookComTimeSpanFormat = 'yyyy-MM-ddTHH:mm:ss'; if (type === calendarOptions.OUTLOOKCOM) { - URL = `${applicationConfig.OUTLOOK_CALENDAR}&startdt=${encodeURIComponent( - getDateFormat(this.Appointment.StartDate, outlookComTimeSpanFormat) - )}&enddt=${encodeURIComponent( - getDateFormat(this.Appointment.EndDate, outlookComTimeSpanFormat) - )}&subject=${encodeURIComponent( - this.Appointment.Subject - )}&body=${encodeURIComponent(this.Appointment.Body)}&location=${encodeURIComponent( - this.Appointment.Location - )}`; + URL = `${applicationConfig.OUTLOOK_CALENDAR}&startdt=${encodeURIComponent(getDateFormat(this.Appointment.StartDate, outlookComTimeSpanFormat))}&enddt=${encodeURIComponent(getDateFormat(this.Appointment.EndDate, outlookComTimeSpanFormat))}&subject=${encodeURIComponent(this.Appointment.Subject)}&body=${encodeURIComponent(this.Appointment.Body)}&location=${encodeURIComponent(this.Appointment.Location)}`; } if (type === calendarOptions.GOOGLE) { - URL = `${applicationConfig.GOOGLE_CALENDAR}&text=${encodeURIComponent( - this.Appointment.Subject - )}&dates=${encodeURIComponent( - getDateFormat(this.Appointment.StartDate, dateFormat) - )}/${encodeURIComponent( - getDateFormat(this.Appointment.EndDate, dateFormat - ))}&details=${encodeURIComponent( - this.Appointment.Body - )}&location=${encodeURIComponent(this.Appointment.Location)}&sf=true&output=xml`; + URL = `${applicationConfig.GOOGLE_CALENDAR}&text=${encodeURIComponent(this.Appointment.Subject)}&dates=${encodeURIComponent(getDateFormat(this.Appointment.StartDate, dateFormat))}/${encodeURIComponent(getDateFormat(this.Appointment.EndDate, dateFormat))}&details=${encodeURIComponent(this.Appointment.Body)}&location=${encodeURIComponent(this.Appointment.Location)}&sf=true&output=xml`; } if (type === calendarOptions.YAHOO) { - URL = `${applicationConfig.YAHOO_CALENDAR}&TITLE=${encodeURIComponent( - this.Appointment.Subject - )}&DESC=${encodeURIComponent(this.Appointment.Body)}&ST=${encodeURIComponent( - getDateFormat(this.Appointment.StartDate, dateFormat) - )}&DUR=${this.Appointment.Duration}&in_loc=${encodeURIComponent( - this.Appointment.Location - )}`; + URL = `${applicationConfig.YAHOO_CALENDAR}&TITLE=${encodeURIComponent(this.Appointment.Subject)}&DESC=${encodeURIComponent(this.Appointment.Body)}&ST=${encodeURIComponent(getDateFormat(this.Appointment.StartDate, dateFormat))}&DUR=${this.Appointment.Duration}&in_loc=${encodeURIComponent(this.Appointment.Location)}`; } return { url: URL, @@ -284,8 +262,6 @@ export default { margin: 0 0 0 0.4375rem; color: #1574a1; vertical-align: middle; - font-weight: 500; - font-family: "UrbanistRegular"; } .add-to-calendar button { border: 0;