mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
fix: Picklist: Unexpected behavior on double click while holding control
This commit is contained in:
parent
b85876be95
commit
79d751bfcd
2 changed files with 3 additions and 2 deletions
|
@ -440,7 +440,7 @@ export default {
|
|||
|
||||
this.$emit('move-to-target', {
|
||||
originalEvent: event,
|
||||
items: selection
|
||||
items: [...new Set(selection)]
|
||||
});
|
||||
|
||||
this.d_selection[0] = [];
|
||||
|
@ -500,7 +500,7 @@ export default {
|
|||
|
||||
this.$emit('move-to-source', {
|
||||
originalEvent: event,
|
||||
items: selection
|
||||
items: [...new Set(selection)]
|
||||
});
|
||||
|
||||
this.d_selection[1] = [];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue