Fixed #4984 - PickList: metaKeySelection does not work as expected

pull/4987/head
tugcekucukoglu 2023-12-20 13:22:35 +03:00
parent bed811ac24
commit ff272de38b
1 changed files with 1 additions and 1 deletions

View File

@ -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');