Merge pull request #3610 from aguyfromdenmark/patch-1

Fixes error in unselectable behaviour in SelectButton
This commit is contained in:
Tuğçe Küçükoğlu 2023-03-09 12:01:40 +03:00 committed by GitHub
commit 14781c1321
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -85,7 +85,7 @@ export default {
let selected = this.isSelected(option);
if (selected && !this.unselectable) {
if (selected && this.unselectable) {
return;
}