Format code.

This commit is contained in:
Bryan Mauger 2025-04-15 16:06:50 -04:00
parent 4918364282
commit 35154ad3d1
2 changed files with 8 additions and 9 deletions

View file

@ -1121,7 +1121,7 @@ export default {
&:checked + label { &:checked + label {
background: $blue-100; background: $blue-100;
border: 2px solid $blue; border: 2px solid $blue;
border-radius: .25rem; border-radius: 0.25rem;
color: $black; color: $black;
span { span {
font-family: AvertaSemibold; font-family: AvertaSemibold;

View file

@ -298,14 +298,13 @@ export default {
); );
// While Pricing By Day Experiment is active, using the updated datePicker // While Pricing By Day Experiment is active, using the updated datePicker
const datePickerInitialDataPromise = const datePickerInitialDataPromise = await datePicker.methods.loadInitialData({
await datePicker.methods.loadInitialData({ // setup config options for date-picker
// setup config options for date-picker selectableDatesSetting: "custom",
selectableDatesSetting: "custom", initialViewRowsToShow: 5,
initialViewRowsToShow: 5, customSelectableDatesCallback: getAvailableDates,
customSelectableDatesCallback: getAvailableDates, preSelectedDate: preSelectedDate,
preSelectedDate: preSelectedDate, });
});
// Get pricingByDayUpcharge needed for Pricing By Day // Get pricingByDayUpcharge needed for Pricing By Day
const pricingByDayUpchargePartPromise = showPricingByDay const pricingByDayUpchargePartPromise = showPricingByDay