Having this vs-select with Autocomplete functionality activated:
<vs-select label="Sistema" v-model="projectId" autocomplete>
<vs-select-item
:key="project._id"
:value="project._id"
:text="project.name"
v-for="project in projects"
></vs-select-item>
</vs-select>
When I press the DOWN ARROW key to navigate down between the options, if I continue navigating down I receive this error:
getNextLi(...).querySelector is not a function
at vs-select-item component, in this section of code:
if (nextElement) {
nextElement.querySelector('.vs-select--item').focus();
} else {
if (lengthx === children.length) lengthx--;
getNextLi(children[lengthx].$el, orientationObject)
.querySelector('.vs-select--item')
.focus();
}
It just happens when I press DOWN ARROW. Instead when I press UP ARROW it doesn't throw any errors and moves fine through the list of options.
We will verify the error and correct it, thank you very much for communicating it will keep you informed of any progress
Ready, the problem is fixed, thank you very much for the contribution
Thank you @luisDanielRoviraContreras , is this fix published in version 3.8.15?
@ccalvarez Yes in the latest version