Merge pull request #2333 from Safelite/feature/CASH-307

CASH-307
This commit is contained in:
CarlNation 2025-02-25 06:41:07 -05:00 committed by GitHub
commit 88cf2317f7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 11 additions and 13 deletions

View file

@ -195,9 +195,9 @@ export default {
left: -9999px;
+ .package-label.pricing-by-day-pkg-lbl {
@include media-breakpoint-up(md) {
padding-bottom: 0.75rem;
}
@include media-breakpoint-up(md) {
padding-bottom: 0.75rem;
}
}
+ .package-label.pricing-by-day-pkg-lbl.adjust-top {
@ -220,9 +220,9 @@ export default {
}
&:after {
top: 20px;
}
@include media-breakpoint-up(md) {
padding-bottom: 0.75rem;
}
@include media-breakpoint-up(md) {
padding-bottom: 0.75rem;
}
}
@ -242,8 +242,8 @@ export default {
min-height: 52px;
max-height: 126px;
@include media-breakpoint-up(md) {
max-height: 500px;
padding-bottom: 3rem;
max-height: 500px;
padding-bottom: 3rem;
}
transition: max-height 0.25s ease-in;

View file

@ -571,11 +571,9 @@ export default {
} else {
if (this.paymentMethod == paymentMethods.INSURANCE) {
this.dispatchStoreAction(this.storeActions.SAVE_PAYMENT_TYPE, true, false);
this.$router.navigateWithoutSaving(
return this.$router.navigateWithSaving(
this.navigationScenarios.CLICKED_INSURANCE,
this.$route,
{},
{ [routerParams.DISPLAY_PIA_ALERT]: false }
this.$route
);
} else {
this.setupPia();

View file

@ -851,7 +851,7 @@ function setupMocks({ mountOptionsMockData, props = mockProps }) {
},
},
};
mountOptionsMockData = Object.assign(mountOptionsMockDataDefault, mountOptionsMockData);
const mountOptions = getMountOptions(mountOptionsMockData);