From 47a7fdd149cc3a491c860b9d5a2bcd4b3ec76b56 Mon Sep 17 00:00:00 2001 From: Max Date: Fri, 4 Feb 2022 14:41:07 -0500 Subject: [PATCH] Fixes to damage location component --- .../damage-location-question.vue | 7 +++---- .../replace-options-question.vue | 3 +-- src/layouts/vehicle-damage/vehicle-damage.vue | 13 +++++-------- 3 files changed, 9 insertions(+), 14 deletions(-) diff --git a/src/layouts/vehicle-damage/damage-location-question/damage-location-question.vue b/src/layouts/vehicle-damage/damage-location-question/damage-location-question.vue index 4000a61c7..10c348575 100644 --- a/src/layouts/vehicle-damage/damage-location-question/damage-location-question.vue +++ b/src/layouts/vehicle-damage/damage-location-question/damage-location-question.vue @@ -3,7 +3,7 @@ - - + + @@ -60,19 +60,16 @@ export default { resultMap.cmsContent.FunnelSubHeaderWidget ); vm.$refs.driverSideOptions.initializeComponent( - resultMap.cmsContent.DriverSideReplaceOptionsQuestion, resultMap.damageOptions.driverSideOptions.availableReplacementOptions, 'DriverSideReplaceOptionsQuestion' + resultMap.cmsContent.DriverSideReplaceOptionsQuestion, resultMap.damageOptions.driverSideOptions.availableReplacementOptions ); vm.$refs.damageLocation.initializeComponent( - resultMap.cmsContent.DamageLocationQuestion, resultMap.damageOptions, 'DamageLocationQuestion' + resultMap.cmsContent.DamageLocationQuestion, resultMap.damageOptions ); - - // for damageOptions and cms content data - //console.log(resultMap) }); }, data(){ return { - damageLocationQuestionData: [], + selectedDamageLocations: [], driverSideOptionsData: [], } },