From f141c557a96de8cd11a0b39948b2f328ec304aa0 Mon Sep 17 00:00:00 2001 From: Adam Caouette Date: Thu, 5 Dec 2024 10:50:39 -0500 Subject: [PATCH 1/2] CSR-2410: fix typo, add missing prop --- src/layouts/payment/payment.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/layouts/payment/payment.vue b/src/layouts/payment/payment.vue index 7103091e6..062f3c218 100644 --- a/src/layouts/payment/payment.vue +++ b/src/layouts/payment/payment.vue @@ -55,11 +55,12 @@ v-model="lineItems" servicePackageOptionsCmsName="ServicePackageTitle" recyclingModalCmsWidgetName="RecycleModal" + :isInsurance="isInsurance" :insuranceDeductible="currentDeductible" :insuranceCompanyName="insuranceCompanyName" :showInsuranceCoverageAs="showInsuranceCoverageAs" :isItac="isItac" - :isNocomp="isNocomp" + :isNoComp="isNoComp" :isExpandedOnLoad="true" />
From e7913c3cbdc688d1b01eb490409d6cb270d48a90 Mon Sep 17 00:00:00 2001 From: Adam Caouette Date: Thu, 5 Dec 2024 10:51:04 -0500 Subject: [PATCH 2/2] CSR-2410: rearrange order to match /payment for consistency --- src/layouts/payment-method/payment-method.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/layouts/payment-method/payment-method.vue b/src/layouts/payment-method/payment-method.vue index 8cd8c13a3..78ec4cc84 100644 --- a/src/layouts/payment-method/payment-method.vue +++ b/src/layouts/payment-method/payment-method.vue @@ -31,9 +31,9 @@ :insuranceCompanyName="insuranceCompanyName" :showInsuranceCoverageAs="showInsuranceCoverageAs" :shouldHideRecalibration="shouldHideRecalibration" - :isExpandedOnLoad="false" :isItac="isItac" - :isNoComp="isNoComp" /> + :isNoComp="isNoComp" + :isExpandedOnLoad="false" />