CASH-2194

CASH-2194 prettier
This commit is contained in:
CarlNation 2026-01-30 16:02:56 -05:00
parent b99e8c4b35
commit 722260d404

View file

@ -98,9 +98,7 @@
linkWidgetName="ServiceZipLinkWidget" linkWidgetName="ServiceZipLinkWidget"
modalWidgetName="ServiceZipModalWidget" /> modalWidgetName="ServiceZipModalWidget" />
</div> </div>
<div <div class="row your-shop-location" v-if="showInshopComponent">
class="row your-shop-location"
v-if="showInshopComponent">
<div class="col-12 col-md-10 col-lg-8 col-xl-7"> <div class="col-12 col-md-10 col-lg-8 col-xl-7">
<div> <div>
<shopLocation <shopLocation
@ -631,9 +629,13 @@ export default {
showInshopComponent() { showInshopComponent() {
// If we get no inshop or mobile data, then show the shoplocation component so the user is not // If we get no inshop or mobile data, then show the shoplocation component so the user is not
// looking at a half blank screen with no way to try another zip/location. // looking at a half blank screen with no way to try another zip/location.
if ((this.inshopTimeSlotsData === undefined && this.mobileTimeSlotsData === undefined) || if (
(this.inshopTimeSlotsData.days.length === 0 && this.mobileTimeSlotsData.days.length === 0) || (this.inshopTimeSlotsData === undefined &&
(this.appointmentType && this.appointmentType !== AppointmentTypeStrings.MOBILE)) { this.mobileTimeSlotsData === undefined) ||
(this.inshopTimeSlotsData.days.length === 0 &&
this.mobileTimeSlotsData.days.length === 0) ||
(this.appointmentType && this.appointmentType !== AppointmentTypeStrings.MOBILE)
) {
return true; return true;
} }
@ -1049,7 +1051,7 @@ export default {
return store.getters.order.serviceLocation.isVehicleProtected; return store.getters.order.serviceLocation.isVehicleProtected;
}, },
getAppointmentTypeFromStore() { getAppointmentTypeFromStore() {
return store.getters.order.serviceLocation.appointmentType; return store.getters.order.serviceLocation.appointmentType;
}, },
getSelectedProviderFromStore() { getSelectedProviderFromStore() {
return store.getters.order.serviceLocation.provider; return store.getters.order.serviceLocation.provider;