Fixed #4383 - OrderList and PickList: Getting error when empty field

pull/3520/head^2
Tuğçe Küçükoğlu 2023-09-05 11:03:25 +03:00
parent 936f95783e
commit 001e22a262
2 changed files with 15 additions and 10 deletions

View File

@ -141,6 +141,7 @@ export default {
onListFocus(event) { onListFocus(event) {
const selectedFirstItem = DomHandler.findSingle(this.list, '[data-p-highlight="true"]'); const selectedFirstItem = DomHandler.findSingle(this.list, '[data-p-highlight="true"]');
if (selectedFirstItem) {
const findIndex = ObjectUtils.findIndexInList(selectedFirstItem, this.list.children); const findIndex = ObjectUtils.findIndexInList(selectedFirstItem, this.list.children);
this.focused = true; this.focused = true;
@ -149,6 +150,7 @@ export default {
this.changeFocusedOptionIndex(index); this.changeFocusedOptionIndex(index);
this.$emit('focus', event); this.$emit('focus', event);
}
}, },
onListBlur(event) { onListBlur(event) {
this.focused = false; this.focused = false;

View File

@ -265,6 +265,8 @@ export default {
}, },
onListFocus(event, listType) { onListFocus(event, listType) {
const selectedFirstItem = DomHandler.findSingle(this.$refs[listType].$el, '[data-p-highlight="true"]'); const selectedFirstItem = DomHandler.findSingle(this.$refs[listType].$el, '[data-p-highlight="true"]');
if (selectedFirstItem) {
const findIndex = ObjectUtils.findIndexInList(selectedFirstItem, this.$refs[listType].$el.children); const findIndex = ObjectUtils.findIndexInList(selectedFirstItem, this.$refs[listType].$el.children);
this.focused[listType] = true; this.focused[listType] = true;
@ -273,6 +275,7 @@ export default {
this.changeFocusedOptionIndex(index, listType); this.changeFocusedOptionIndex(index, listType);
this.$emit('focus', event); this.$emit('focus', event);
}
}, },
onListBlur(event, listType) { onListBlur(event, listType) {
this.focused[listType] = false; this.focused[listType] = false;