Skip to content

Commit 7a690ba

Browse files
committed
fix(MdSelect): add missing this for calling isLocalValueSet function
1 parent 26b84a7 commit 7a690ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/MdField/MdSelect/MdSelect.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@
263263
return this.localValue !== undefined && this.localValue !== null
264264
},
265265
setLocalValueIfMultiple () {
266-
if (isLocalValueSet()) {
266+
if (this.isLocalValueSet()) {
267267
this.localValue = [this.localValue]
268268
} else {
269269
this.localValue = []

0 commit comments

Comments
 (0)