From 1b2558aef795bb3974662cc1562c36a139b647e3 Mon Sep 17 00:00:00 2001 From: AdamCaouetteSafelite Date: Wed, 24 Sep 2025 09:56:55 -0400 Subject: [PATCH] CASH-1502: naming changes / comment changes --- src/layouts/quote/quote.vue | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/layouts/quote/quote.vue b/src/layouts/quote/quote.vue index 9b23a2d9a..2e7cb06da 100644 --- a/src/layouts/quote/quote.vue +++ b/src/layouts/quote/quote.vue @@ -4,7 +4,7 @@
+ :class="[showSaveProgressPopup ? 'initial-popup-open' : '']">
@@ -288,7 +288,7 @@ export default { const isEmailInStoreOnPageLoad = emailFromStore?.length > 0; const isPopupSkipped = store.getters.pageData(routeData.QUOTE.name)?.saveProgressPopupSkipped === true; - // POPUP is the automatic opening centered popup on load + // "popup" is the automatic opening centered popup on load const showSaveProgressPopup = !(isEmailInStoreOnPageLoad || isPopupSkipped); const showSaveProgressModal = isEmailInStoreOnPageLoad ? false : true; const shouldSkipToInsurance = @@ -558,8 +558,8 @@ export default { servicePackage: null, holdParentAccountNumber: null, holdBillToAccountNumber: null, - showSaveProgressPopup: null, // POPUP is the automatic opening centered popup on load - showSaveProgressModal: null, // MODAL is the user-triggered slide in drawer + showSaveProgressPopup: null, // "popup" is the automatic opening centered popup on load + showSaveProgressModal: null, // "modal" is the user-triggered slide-in drawer isSaveProgressComplete: null, packageNumber: null, skipToInsurance: null, @@ -902,7 +902,9 @@ export default {