Demo URL
No response
What happened?
vueform/multiselect infinite not working with _forms-multiselect. The infinite loader keeps on loading and wont scroll pass the initial limit.

<VField v-slot="{ id }" class="is-icon-select">
<VControl>
<Multiselect
:attrs="{ id }"
v-model="value"
mode="multiple"
placeholder="Choose your stack"
:close-on-select="false"
:filter-results="false"
:min-chars="0"
:resolve-on-load="false"
:infinite="true"
:limit="10"
:clear-on-search="true"
:delay="0"
:hide-selected="false"
:searchable="true"
:options="
async (query) => {
return await fetchLanguages(query);
}
"
@open="
(select$) => {
if (select$.noOptions) {
select$.resolveOptions();
}
}
"
/>
</VControl>
</VField>
Works fine when I comment out Multiselect base styles in _forms-multiselect.scss
Reproduction steps
Create Multiselect with infinite and async options.
Relevant log output
No response
What browsers are you seeing the problem on?
No response
What is your operating system?
No response
Demo URL
No response
What happened?
vueform/multiselect
infinitenot working with _forms-multiselect. The infinite loader keeps on loading and wont scroll pass the initial limit.Works fine when I comment out
Multiselect base stylesin _forms-multiselect.scssReproduction steps
Relevant log output
No response
What browsers are you seeing the problem on?
No response
What is your operating system?
No response