fix: Picklist: Unexpected behavior on double click while holding control

This commit is contained in:
Chingiz Mammadov 2023-10-12 19:38:19 +04:00
parent b85876be95
commit 79d751bfcd
No known key found for this signature in database
GPG key ID: ABCB4517F50A9077
2 changed files with 3 additions and 2 deletions

View file

@ -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] = [];