mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-10 09:22:34 +00:00
Fix error in unselectable behaviour
Fixed an error, that cause the "unselectable" prop behaviour to be the inverse of the expected.
This commit is contained in:
parent
e4ee369259
commit
3413dda1f4
1 changed files with 1 additions and 1 deletions
|
@ -85,7 +85,7 @@ export default {
|
||||||
|
|
||||||
let selected = this.isSelected(option);
|
let selected = this.isSelected(option);
|
||||||
|
|
||||||
if (selected && !this.unselectable) {
|
if (selected && this.unselectable) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue