There was a bug introduced in the 19th of Oct which broke the autocomplete in some cases – it's fixed now
There was a bug introduced in the 19th of Oct which broke the autocomplete in some cases – it's fixed now
It's fixed now
I replaced the following:
<div x-data="dropdown()">
...
</div>
<script>
function dropdown() {
return {
...
}
}
</script>
with:
<div x-data="dropdown">
...
</div>
<script>
document.addEventListener('alpine:init', () => {
Alpine.data('dropdown', () => ({
...
}))
})
</script>