Merge pull request #2698 from Safelite/feature/CASH-1247

Feature/CASH-1247
This commit is contained in:
Chris 2025-07-25 14:21:06 -04:00 committed by GitHub
commit 957566636d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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