diff --git a/src/layouts/vehicle-damage/windshield-options/windshield-damage-type-question/windshield-damage-type-question.vue b/src/layouts/vehicle-damage/windshield-options/windshield-damage-type-question/windshield-damage-type-question.vue
index 4d390e1f2..89e5a4b83 100644
--- a/src/layouts/vehicle-damage/windshield-options/windshield-damage-type-question/windshield-damage-type-question.vue
+++ b/src/layouts/vehicle-damage/windshield-options/windshield-damage-type-question/windshield-damage-type-question.vue
@@ -1,7 +1,6 @@
- WDTQ: {{ modelValue }}
- {{ windshieldDamageTypeQuestionValidationRules }}
- WO:
-
- {{ selectedWindshieldDamageTypeValues }}
{
- console.log(value)
- console.log(otherFieldValue)
- console.log(value.toString().toUpperCase().includes(damageLocationsSelected.REPAIR.toUpperCase()))
- console.log(otherFieldValue.toString().toUpperCase().includes(damageLocationsSelected.WINDSHIELD.toUpperCase()))
- console.log(Array.isArray(otherFieldValue))
- console.log(otherFieldValue.length > 1)
- // this.$nextTick();
- if (value.toString().toUpperCase().includes(damageLocationsSelected.REPAIR.toUpperCase()) &&
- otherFieldValue.toString().toUpperCase().includes(damageLocationsSelected.WINDSHIELD.toUpperCase()) &&
- Array.isArray(otherFieldValue) &&
- otherFieldValue.length > 1)
- {
- console.log("A")
- return false;
- }
- console.log("B")
- return true;
-});
defineRule("repair-only", (value) => {
if (value.toString().toUpperCase() === damageLocationsSelected.REPAIR.toUpperCase()) {
return true;
@@ -204,7 +180,7 @@ export default ({
},
windshieldDamageTypeQuestionValidationRules() {
// Note: the validation rules string is not dynamic (it cannot be changed once component has been created)
- let validationRules = "windshield-damage-type-required|check-for-repair-and-replace:@DamageLocationQuestion";
+ let validationRules = "windshield-damage-type-required";
// if vehicle has no windshield replacement option
if (!this.isWindshieldReplaceAvailable) {
validationRules = validationRules.concat('|repair-only');
diff --git a/src/ux-components/list-card/list-card.vue b/src/ux-components/list-card/list-card.vue
index 01ca30a8b..57537668f 100644
--- a/src/ux-components/list-card/list-card.vue
+++ b/src/ux-components/list-card/list-card.vue
@@ -1,7 +1,5 @@
- {{ errors }}
-
{{ hasError }}