Removed unneeded check for 'None' on getSelectedAppointmentType
This commit is contained in:
parent
4257828465
commit
49d6eb3a72
1 changed files with 1 additions and 3 deletions
|
|
@ -349,9 +349,7 @@ export default {
|
|||
return store.getters.order.serviceLocation.zipCode;
|
||||
},
|
||||
getSelectedAppointmentType() {
|
||||
return store.getters.order.serviceLocation.appointmentType == "None"
|
||||
? null
|
||||
: store.getters.order.serviceLocation.appointmentType;
|
||||
return store.getters.order.serviceLocation.appointmentType;
|
||||
},
|
||||
getSelectedProvider() {
|
||||
return store.getters.order.serviceLocation.provider;
|
||||
|
|
|
|||
Loading…
Reference in a new issue