From f65832ab237d7129765125adeb45ca1e0f29df58 Mon Sep 17 00:00:00 2001 From: DavidAtSafelite Date: Fri, 28 Jul 2023 07:18:06 -0400 Subject: [PATCH] Baseline linting for the remainder of the layout pages and the router folder. --- src/constants/error-messages.js | 2 +- .../tpa-confirmation/tpa-confirmation.vue | 54 +- src/layouts/tpa-search/tpa-search.vue | 46 +- src/layouts/tpa-submit/tpa-submit.vue | 51 +- .../damage-location-question.spec.js | 10 +- .../damage-location-question.vue | 37 +- .../replace-options-question.spec.js | 20 +- .../replace-options-question.vue | 56 +- .../side-door-options.spec.js | 14 +- .../side-door-options/side-door-options.vue | 103 +- .../vehicle-damage/vehicle-damage.spec.js | 7 +- src/layouts/vehicle-damage/vehicle-damage.vue | 433 +++---- .../windshield-chip-count-question.spec.js | 4 +- .../windshield-chip-count-question.vue | 24 +- .../windshield-damage-type-question.vue | 24 +- .../windshield-options/windshield-options.vue | 174 ++- .../vehicle-lookup/vehicle-lookup.spec.js | 23 +- src/layouts/vehicle-lookup/vehicle-lookup.vue | 51 +- .../vin-lookup-methods/vin-lookup-methods.vue | 33 +- .../glass-part-question.spec.js | 22 +- .../glass-part-question.vue | 87 +- .../vehicle-parts/vehicle-parts.spec.js | 68 +- src/layouts/vehicle-parts/vehicle-parts.vue | 115 +- .../vehicle-question/vehicle-question.vue | 24 +- .../vehicle-selection/vehicle-selection.vue | 124 +- .../vin-location-information.spec.js | 4 +- .../vin-location-information.vue | 17 +- .../perfect-match-alert.vue | 7 +- .../two-identical-ymm-vehicle-alert.vue | 5 +- .../vehicle-not-found-alert.vue | 7 +- .../vehicle-not-matched-alert.vue | 5 +- .../vin-lookup-alerts.spec.js | 4 +- .../vin-lookup-alerts/vin-lookup-alerts.vue | 19 +- src/layouts/vin-lookup/vin-lookup.spec.js | 2 +- src/layouts/vin-lookup/vin-lookup.vue | 128 +- .../vin-lookup/vin-question/vin-question.vue | 13 +- src/layouts/welcome-page/welcome-page.spec.js | 60 +- src/layouts/welcome-page/welcome-page.vue | 253 ++-- src/router/index.js | 68 +- src/router/router-constants/issPage-values.js | 5 +- .../router-constants/navigation-scenarios.js | 1 - src/router/router-constants/routing-table.js | 1150 ++++++++--------- src/router/router.spec.js | 6 +- 43 files changed, 1632 insertions(+), 1728 deletions(-) diff --git a/src/constants/error-messages.js b/src/constants/error-messages.js index 85dd188f..123cf07e 100644 --- a/src/constants/error-messages.js +++ b/src/constants/error-messages.js @@ -5,7 +5,7 @@ const errorMessages = { PASSENGER_SIDE_OPTIONS_REQUIRED: 'Please select window', WINDSHIELD_DAMAGE_TYPE_REQUIRED: 'Please select windshield damage', WINDSHIELD_CHIP_COUNT_REQUIRED: 'Please select chip(s)', - WINSHIELD_REPLACE_OPTIONS_REQUIRED: 'Please select windshield part', + WINDSHIELD_REPLACE_OPTIONS_REQUIRED: 'Please select windshield part', REPLACE_OPTIONS_REQUIRED: 'Please select rear window type', STREET_ADDRESS_REQUIRED: 'Please enter your street address', CITY_REQUIRED: 'Please enter your city', diff --git a/src/layouts/tpa-confirmation/tpa-confirmation.vue b/src/layouts/tpa-confirmation/tpa-confirmation.vue index e9fb4836..a59222eb 100644 --- a/src/layouts/tpa-confirmation/tpa-confirmation.vue +++ b/src/layouts/tpa-confirmation/tpa-confirmation.vue @@ -1,17 +1,20 @@