Merge pull request #188 from Safelite/brm-fix-console-error

Fix console error.
This commit is contained in:
bmauger 2022-02-02 17:00:45 -05:00 committed by GitHub
commit a4b6c40e00
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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() {