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" />
|
labelBold="true" />
|
||||||
</div>
|
</div>
|
||||||
</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">
|
<div class="col-md-6 col-xl-4">
|
||||||
<button-question
|
<button-question
|
||||||
class="shop-question-button"
|
class="shop-question-button"
|
||||||
|
|
@ -752,7 +754,11 @@ export default {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
isShopQuestionDisplayed() {
|
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() {
|
isAppointmentTypeDisplayed() {
|
||||||
// temporary adjustment
|
// temporary adjustment
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue