Skip to content

Commit

Permalink
Merge pull request #3610 from aguyfromdenmark/patch-1
Browse files Browse the repository at this point in the history
Fixes error in unselectable behaviour in SelectButton
  • Loading branch information
tugcekucukoglu authored Mar 9, 2023
2 parents c8ac695 + 3413dda commit 14781c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/selectbutton/SelectButton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export default {
let selected = this.isSelected(option);
if (selected && !this.unselectable) {
if (selected && this.unselectable) {
return;
}
Expand Down

0 comments on commit 14781c1

Please sign in to comment.