CSR-78 simplify if stmt

This commit is contained in:
CarlNation 2022-02-04 16:27:10 -05:00
parent 06c312d6c6
commit 8d3d0d9d74

View file

@ -42,11 +42,7 @@ export default {
},
computed: {
hasSubText(){
if (this.subText.length > 0){
return true;
}
return false;
return this.subText.length > 0;
}
},
methods: {