CSR-296: remove boolean
This commit is contained in:
parent
a08a2b93c8
commit
02213cf24d
1 changed files with 2 additions and 3 deletions
|
|
@ -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(){
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue