Fix error in unselectable behaviour
Fixed an error, that cause the "unselectable" prop behaviour to be the inverse of the expected.pull/3610/head
parent
e4ee369259
commit
3413dda1f4
|
@ -85,7 +85,7 @@ export default {
|
||||||
|
|
||||||
let selected = this.isSelected(option);
|
let selected = this.isSelected(option);
|
||||||
|
|
||||||
if (selected && !this.unselectable) {
|
if (selected && this.unselectable) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue