CSR-296: remove test var
This commit is contained in:
parent
e2bd611f03
commit
0848dafe48
1 changed files with 5 additions and 9 deletions
|
|
@ -104,15 +104,11 @@ export default {
|
|||
},
|
||||
computed: {
|
||||
isRearWindowDamageLocation() {
|
||||
if (this.selectedDamageLocations) {
|
||||
const myTest = this.selectedDamageLocations.some(selectedDamages =>
|
||||
{
|
||||
return Boolean(selectedDamages.toUpperCase() === "REARWINDOW");
|
||||
});
|
||||
return myTest;
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
return Boolean(this.selectedDamageLocations.some(selectedDamages =>
|
||||
{
|
||||
return selectedDamages.toUpperCase() === "REARWINDOW";
|
||||
})
|
||||
);
|
||||
},
|
||||
},
|
||||
data(){
|
||||
|
|
|
|||
Loading…
Reference in a new issue