CASH-323
removing extra spaces, cart promo link is taking extra space even not in use at confirmation page.
This commit is contained in:
parent
df485d8b1b
commit
41c039e332
3 changed files with 14 additions and 4 deletions
|
|
@ -61,11 +61,11 @@
|
||||||
<div class="col-12">
|
<div class="col-12">
|
||||||
<div
|
<div
|
||||||
v-if="showDonationSuccess"
|
v-if="showDonationSuccess"
|
||||||
class="d-flex justify-content-center align-items-center btn-success w-100 mb-2"
|
class="d-flex justify-content-center align-items-center btn-success w-100"
|
||||||
v-html="DonationThanksAlertWidget"></div>
|
v-html="DonationThanksAlertWidget"></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row px-4">
|
<div class="row px-4 mt-2">
|
||||||
<div class="col">
|
<div class="col">
|
||||||
<alert
|
<alert
|
||||||
v-if="showDonationError"
|
v-if="showDonationError"
|
||||||
|
|
@ -142,7 +142,7 @@ export default {
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.donation-block {
|
.donation-block {
|
||||||
padding: 1rem 0;
|
padding: 1rem 0 0 0;
|
||||||
background-color: $gray-100;
|
background-color: $gray-100;
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -128,6 +128,7 @@
|
||||||
{{ insuranceCompanyName }}
|
{{ insuranceCompanyName }}
|
||||||
</div>
|
</div>
|
||||||
<promoModalQuestion
|
<promoModalQuestion
|
||||||
|
v-if="showPromoModalQuestion"
|
||||||
ref="promoModalQuestion"
|
ref="promoModalQuestion"
|
||||||
class="small mt-4"
|
class="small mt-4"
|
||||||
v-model="lineItems"
|
v-model="lineItems"
|
||||||
|
|
@ -200,6 +201,11 @@ export default {
|
||||||
isItac: Boolean,
|
isItac: Boolean,
|
||||||
isNoComp: Boolean,
|
isNoComp: Boolean,
|
||||||
isExpandedOnLoad: Boolean,
|
isExpandedOnLoad: Boolean,
|
||||||
|
showPromoModalQuestion:{
|
||||||
|
default:true,
|
||||||
|
type:Boolean,
|
||||||
|
required:false
|
||||||
|
}
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
|
|
||||||
|
|
@ -62,7 +62,8 @@
|
||||||
:shouldHideRecalibration="shouldHideRecalibration"
|
:shouldHideRecalibration="shouldHideRecalibration"
|
||||||
:isExpandedOnLoad="false"
|
:isExpandedOnLoad="false"
|
||||||
:isItac="isItac"
|
:isItac="isItac"
|
||||||
:isNoComp="isNoComp" />
|
:isNoComp="isNoComp"
|
||||||
|
:showPromoModalQuestion="ShowPromoModalQuestion" />
|
||||||
|
|
||||||
<div class="mt-3" v-if="DisplayFosterLove">
|
<div class="mt-3" v-if="DisplayFosterLove">
|
||||||
<donationBlock
|
<donationBlock
|
||||||
|
|
@ -248,6 +249,9 @@ export default {
|
||||||
"true"
|
"true"
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
ShowPromoModalQuestion(){
|
||||||
|
return false;
|
||||||
|
},
|
||||||
isRecalibrationOnOrder() {
|
isRecalibrationOnOrder() {
|
||||||
return containsRecalParts(this?.lineItems);
|
return containsRecalParts(this?.lineItems);
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue