Javascript console error fixed

This commit is contained in:
Burak Civan
2021-05-31 16:18:30 +03:00
parent 7de2814a5f
commit 81852f00fa
3 changed files with 4 additions and 7 deletions

View File

@ -430,9 +430,7 @@ export default {
this.selected = this.value;
if (this.model.length) {
if (eval(this.model) !== undefined) {
this.selected = eval(this.model);
} else {
if (this.model !== undefined) {
this.selected = this.model;
}
}