Fixed #4631 - SelectButton: unselectable property defect

This commit is contained in:
Tuğçe Küçükoğlu 2023-10-17 09:32:11 +03:00
parent 4e91dcc46c
commit 4736dac5ff
3 changed files with 4 additions and 4 deletions

View file

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