CSR-715 Cleanup

This commit is contained in:
Katie 2022-07-05 10:38:15 -04:00
parent 9007f99cbc
commit e080ade54c
2 changed files with 1 additions and 4 deletions

View file

@ -359,9 +359,7 @@ export default {
}); });
}, },
isWindshieldRepair() { isWindshieldRepair() {
if (!this.isWindshieldDamageLocation) return false; return this.isWindshieldDamageLocation && this.selectedWindshieldOptions.selectedWindshieldDamageType === damageLocationsSelected.REPAIR;
return this.selectedWindshieldOptions.selectedWindshieldDamageType === damageLocationsSelected.REPAIR;
}, },
isDriverSideReplace() { isDriverSideReplace() {
if (!this.isSideDoorDamageLocation) return false; if (!this.isSideDoorDamageLocation) return false;

View file

@ -42,7 +42,6 @@ export default ({
}, },
set: function(newValue) { set: function(newValue) {
this.$emit("update:modelValue", newValue); this.$emit("update:modelValue", newValue);
this.$nextTick();
} }
}, },
}, },