Skip to content

Commit

Permalink
Fixed #4984 - PickList: metaKeySelection does not work as expected
Browse files Browse the repository at this point in the history
  • Loading branch information
tugcekucukoglu committed Dec 20, 2023
1 parent bed811a commit ff272de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/lib/picklist/PickList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,7 @@ export default {
this.itemTouched = false;
const selectionList = this.d_selection[listIndex];
const selectedIndex = ObjectUtils.findIndexInList(item, this.d_selection);
const selectedIndex = ObjectUtils.findIndexInList(item, selectionList);
const selected = selectedIndex != -1;
const metaSelection = this.itemTouched ? false : this.metaKeySelection;
const selectedId = DomHandler.find(this.$refs[listType].$el, '[data-pc-section="item"]')[index].getAttribute('id');
Expand Down

0 comments on commit ff272de

Please sign in to comment.