From 784705041ae8799db2d4692b9fdee8060e6a3efe Mon Sep 17 00:00:00 2001 From: Adam Caouette Date: Mon, 23 Sep 2024 16:06:25 -0400 Subject: [PATCH 1/2] CSR-2166: EVEN MORE temporary debugging indications for dev --- src/layouts/quote/quote.vue | 3 ++- .../service-package-question/service-package-question.vue | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/layouts/quote/quote.vue b/src/layouts/quote/quote.vue index 5d3db0c3a..c9e1b3064 100644 --- a/src/layouts/quote/quote.vue +++ b/src/layouts/quote/quote.vue @@ -18,6 +18,7 @@

thresholdToUse: {{ thresholdToUse }}

externalSource: {{ externalSource }}

+

typeof recalSettingValue: {{ typeof recalSettingValue }}

recalSettingValue: {{ recalSettingValue }}


@@ -409,7 +410,7 @@ export default { shouldHideRecalibration() { const recalSettingValue = experimentMixin.methods.getSettingValue( experimentSettings.RECAL_PRICE_REMOVE - ); + ).toLowerCase() === "true"; return recalSettingValue; }, showAfterpayBanner() { diff --git a/src/layouts/quote/service-package-question/service-package-question.vue b/src/layouts/quote/service-package-question/service-package-question.vue index 2d8012aeb..b092ea65b 100644 --- a/src/layouts/quote/service-package-question/service-package-question.vue +++ b/src/layouts/quote/service-package-question/service-package-question.vue @@ -3,7 +3,9 @@

isInsuranceSelected: {{ isInsuranceSelected }}

+

typeof isRecalibrationOnOrder: {{ typeof isRecalibrationOnOrder }}

isRecalibrationOnOrder: {{ isRecalibrationOnOrder }}

+

typeof shouldHideRecalibration: {{ typeof shouldHideRecalibration }}

shouldHideRecalibration: {{ shouldHideRecalibration }}

From 00f34b7c3c3cc43f94df6b8837a43870b06a201c Mon Sep 17 00:00:00 2001 From: Adam Caouette Date: Mon, 23 Sep 2024 16:16:18 -0400 Subject: [PATCH 2/2] CSR-2166: fix for null exception error --- src/layouts/quote/quote.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/layouts/quote/quote.vue b/src/layouts/quote/quote.vue index c9e1b3064..083862763 100644 --- a/src/layouts/quote/quote.vue +++ b/src/layouts/quote/quote.vue @@ -410,7 +410,7 @@ export default { shouldHideRecalibration() { const recalSettingValue = experimentMixin.methods.getSettingValue( experimentSettings.RECAL_PRICE_REMOVE - ).toLowerCase() === "true"; + )?.toLowerCase() === "true"; return recalSettingValue; }, showAfterpayBanner() {