Merge pull request #3610 from aguyfromdenmark/patch-1
Fixes error in unselectable behaviour in SelectButtonpull/3711/head
commit
14781c1321
|
@ -85,7 +85,7 @@ export default {
|
|||
|
||||
let selected = this.isSelected(option);
|
||||
|
||||
if (selected && !this.unselectable) {
|
||||
if (selected && this.unselectable) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue