mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
Merge pull request #3610 from aguyfromdenmark/patch-1
Fixes error in unselectable behaviour in SelectButton
This commit is contained in:
commit
14781c1321
1 changed files with 1 additions and 1 deletions
|
@ -85,7 +85,7 @@ export default {
|
|||
|
||||
let selected = this.isSelected(option);
|
||||
|
||||
if (selected && !this.unselectable) {
|
||||
if (selected && this.unselectable) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue