From 176737e5aaf62efb0e779e17a9b4435983fcc764 Mon Sep 17 00:00:00 2001 From: Ignacio Durand Date: Tue, 12 Nov 2024 22:37:45 -0300 Subject: [PATCH] Fix $isLabel issue When `this.filteredOptions[this.pointer]` is null, it's breaking on `pointerAdjust` --- src/pointerMixin.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pointerMixin.js b/src/pointerMixin.js index e363524a..98173e84 100644 --- a/src/pointerMixin.js +++ b/src/pointerMixin.js @@ -129,6 +129,7 @@ export default { } if (this.filteredOptions.length > 0 && + this.filteredOptions[this.pointer] && this.filteredOptions[this.pointer].$isLabel && !this.groupSelect ) {