From a8ac52220057d1c0d60fa6b3b03f77165c85eb18 Mon Sep 17 00:00:00 2001 From: Chris Redelinghuys Date: Fri, 25 Jul 2025 14:14:33 -0400 Subject: [PATCH] CASH-1247: Preselect In-Shop if Drop-off was selected --- .../appointment-type-question/appointment-type-question.vue | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/layouts/service-location/appointment-type-question/appointment-type-question.vue b/src/layouts/service-location/appointment-type-question/appointment-type-question.vue index 5189a15a4..469344d04 100644 --- a/src/layouts/service-location/appointment-type-question/appointment-type-question.vue +++ b/src/layouts/service-location/appointment-type-question/appointment-type-question.vue @@ -73,7 +73,11 @@ export default { }, selectedValue: { get: function () { - return this.modelValue; + if (this.modelValue === AppointmentTypeStrings.DROP_OFF) { + return AppointmentTypeStrings.IN_SHOP; + } else { + return this.modelValue; + } }, set: function (newValue) { this.$emit("update:modelValue", newValue);