CSR-2066
formatting
This commit is contained in:
parent
d8c5c82876
commit
6790d97b82
3 changed files with 10 additions and 7 deletions
|
|
@ -96,7 +96,8 @@
|
|||
</span>
|
||||
<span
|
||||
v-if="
|
||||
!showCoverageAsVerified || cartItem.name === 'Recycling' ||
|
||||
!showCoverageAsVerified ||
|
||||
cartItem.name === 'Recycling' ||
|
||||
(showCoverageAsVerified && !cartItem.isCoveredByInsurance)
|
||||
"
|
||||
>{{
|
||||
|
|
|
|||
|
|
@ -50,7 +50,10 @@
|
|||
cmsWidgetName="AlertInshopPromoWidget"
|
||||
alertClass="alert-danger"
|
||||
v-bind:isDismissible="false" />
|
||||
<div class="mt-4 d-flex align-items-center justify-content-between" v-for="(promoCode, i) in this.getPromoCodeList()" :key="i">
|
||||
<div
|
||||
class="mt-4 d-flex align-items-center justify-content-between"
|
||||
v-for="(promoCode, i) in this.getPromoCodeList()"
|
||||
:key="i">
|
||||
<span class="applied-promo"
|
||||
>Promo code <span class="promo-code">{{ promoCode }}</span> applied
|
||||
</span>
|
||||
|
|
@ -357,7 +360,7 @@ export default {
|
|||
</script>
|
||||
<style lang="scss" scoped>
|
||||
.applied-promo {
|
||||
font-size: .875rem;
|
||||
font-size: 0.875rem;
|
||||
font-weight: 500;
|
||||
line-height: 24px;
|
||||
color: $green;
|
||||
|
|
@ -368,7 +371,7 @@ export default {
|
|||
}
|
||||
.alert {
|
||||
color: $red;
|
||||
font-size: .875rem;
|
||||
font-size: 0.875rem;
|
||||
font-weight: 500;
|
||||
line-height: 24px;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -147,15 +147,14 @@ export async function navigateToHeritageFunnel({
|
|||
) {
|
||||
heritageParms["forceEndToEndInsurance"] = true;
|
||||
}
|
||||
|
||||
|
||||
// clear the heritage session that may still exist after an order was already submitted
|
||||
if (window.sessionStorage.getItem("createNewSessionForHeritage") !== null) {
|
||||
heritageParms["cns"] = "all";
|
||||
window.sessionStorage.removeItem("createNewSessionForHeritage");
|
||||
}
|
||||
|
||||
router.navigateToExternalUrl(applicationConfig.HERITAGE_FUNNEL, heritageParms, callBackMethod);
|
||||
|
||||
router.navigateToExternalUrl(applicationConfig.HERITAGE_FUNNEL, heritageParms, callBackMethod);
|
||||
}
|
||||
|
||||
export async function skipVinLookup() {
|
||||
|
|
|
|||
Loading…
Reference in a new issue