Fix console error.

This commit is contained in:
bmauger 2022-02-02 16:56:57 -05:00
parent ba9cd0a075
commit b46be8a54d

View file

@ -78,7 +78,7 @@ export default {
} }
}, },
created(){ created(){
this.checkValue = this.modelValue.includes(this.buttonID); this.checkValue = this.modelValue ? this.modelValue.includes(this.buttonID) : false;
}, },
computed: { computed: {
getLabelClasses() { getLabelClasses() {