CASH-152: prettier - you're killin me smalls
This commit is contained in:
parent
f29f246ef6
commit
fea13aefb5
2 changed files with 15 additions and 11 deletions
|
|
@ -72,7 +72,9 @@
|
||||||
:id="`${month.monthLabel}-${date.dateNum.toString()}`" />
|
:id="`${month.monthLabel}-${date.dateNum.toString()}`" />
|
||||||
<label :for="`${month.monthLabel}-${date.dateNum.toString()}`">
|
<label :for="`${month.monthLabel}-${date.dateNum.toString()}`">
|
||||||
<span>{{ date.dateNum.toString() }}</span>
|
<span>{{ date.dateNum.toString() }}</span>
|
||||||
<span v-if="isPricingByDayExperiment && showPricingByDay && date.isSelectable" class="price">
|
<span
|
||||||
|
v-if="isPricingByDayExperiment && showPricingByDay && date.isSelectable"
|
||||||
|
class="price">
|
||||||
{{ date.priceString }}
|
{{ date.priceString }}
|
||||||
</span>
|
</span>
|
||||||
</label>
|
</label>
|
||||||
|
|
@ -1089,7 +1091,8 @@ export default {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.pricing-by-day { // pricing by day override styles
|
&.pricing-by-day {
|
||||||
|
// pricing by day override styles
|
||||||
.calendar-grid-container .grid-item {
|
.calendar-grid-container .grid-item {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -293,15 +293,16 @@ export default {
|
||||||
);
|
);
|
||||||
|
|
||||||
// While Pricing By Day Experiment is ongoing, using the updated datePicker
|
// While Pricing By Day Experiment is ongoing, using the updated datePicker
|
||||||
const datePickerInitialDataPromise = await datePickerForPricingByDay.methods.loadInitialData({
|
const datePickerInitialDataPromise =
|
||||||
// setup config options for date-picker
|
await datePickerForPricingByDay.methods.loadInitialData({
|
||||||
selectableDatesSetting: "custom",
|
// setup config options for date-picker
|
||||||
initialViewRowsToShow: 5,
|
selectableDatesSetting: "custom",
|
||||||
customSelectableDatesCallback: getAvailableDates,
|
initialViewRowsToShow: 5,
|
||||||
preSelectedDate: preSelectedDate,
|
customSelectableDatesCallback: getAvailableDates,
|
||||||
baseDayPrice: baseDayPrice,
|
preSelectedDate: preSelectedDate,
|
||||||
pricingByDayUpcharge: pricingByDayUpcharge,
|
baseDayPrice: baseDayPrice,
|
||||||
});
|
pricingByDayUpcharge: pricingByDayUpcharge,
|
||||||
|
});
|
||||||
|
|
||||||
const premiumFeePromise = baseMixin.methods.dispatchStoreActionWithLogging(
|
const premiumFeePromise = baseMixin.methods.dispatchStoreActionWithLogging(
|
||||||
storeActions.GET_MOBILE_PREMIUM_FEE,
|
storeActions.GET_MOBILE_PREMIUM_FEE,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue