CSR-296: remove boolean

This commit is contained in:
Adam Caouette 2022-02-23 09:55:59 -05:00
parent a08a2b93c8
commit 02213cf24d

View file

@ -104,11 +104,10 @@ export default {
}, },
computed: { computed: {
isRearWindowDamageLocation() { isRearWindowDamageLocation() {
return Boolean(this.selectedDamageLocations.some(selectedDamages => return this.selectedDamageLocations.some(selectedDamages =>
{ {
return selectedDamages.toUpperCase() === "REARWINDOW"; return selectedDamages.toUpperCase() === "REARWINDOW";
}) });
);
}, },
}, },
data(){ data(){