Merge pull request #3610 from aguyfromdenmark/patch-1

Fixes error in unselectable behaviour in SelectButton
pull/3711/head
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
1 changed files with 1 additions and 1 deletions

View File

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