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);