CASH-845 prettier fixes
This commit is contained in:
parent
3ba3f8a4fc
commit
f7351ca5be
2 changed files with 9 additions and 3 deletions
|
|
@ -80,7 +80,9 @@
|
|||
labelBold="true" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="row justify-content-center your-shop-location" v-if="appointmentType && appointmentType !== appointmentTypeStrings.MOBILE">
|
||||
<div
|
||||
class="row justify-content-center your-shop-location"
|
||||
v-if="appointmentType && appointmentType !== appointmentTypeStrings.MOBILE">
|
||||
<div class="col-md-6 col-xl-4">
|
||||
<button-question
|
||||
class="shop-question-button"
|
||||
|
|
@ -752,7 +754,11 @@ export default {
|
|||
}
|
||||
},
|
||||
isShopQuestionDisplayed() {
|
||||
return this.appointmentType === AppointmentTypeStrings.IN_SHOP || this.appointmentType === AppointmentTypeStrings.DROP_OFF || AppointmentTypeStrings.IN_SHOP_OR_DROP_OFF;
|
||||
return (
|
||||
this.appointmentType === AppointmentTypeStrings.IN_SHOP ||
|
||||
this.appointmentType === AppointmentTypeStrings.DROP_OFF ||
|
||||
AppointmentTypeStrings.IN_SHOP_OR_DROP_OFF
|
||||
);
|
||||
},
|
||||
isAppointmentTypeDisplayed() {
|
||||
// temporary adjustment
|
||||
|
|
|
|||
|
|
@ -272,7 +272,7 @@ export default {
|
|||
}
|
||||
if (
|
||||
this.appointmentType === AppointmentTypeStrings.IN_SHOP ||
|
||||
this.appointmentType === AppointmentTypeStrings.DROP_OFF ||
|
||||
this.appointmentType === AppointmentTypeStrings.DROP_OFF ||
|
||||
this.appointmentType === AppointmentTypeStrings.IN_SHOP_OR_DROP_OFF
|
||||
) {
|
||||
var shops = mappedData.map((shop) => {
|
||||
|
|
|
|||
Loading…
Reference in a new issue