Merge pull request #2698 from Safelite/feature/CASH-1247
Feature/CASH-1247
This commit is contained in:
commit
957566636d
1 changed files with 5 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue