I have a Laravel project using Filament that has always worked perfectly until now.
Today, I noticed that whenever I click on an action that should open a modal, a black backdrop appears over everything, and I can’t click anything!
What’s strange is that I tried rolling back to previous commits (even ones from a month ago when I’m sure everything worked fine), but the issue persists even in those commits.
Laravel 11
Filament 3
2
Answers
I managed to resolve the issue.
In my case, the problem was caused by a plugin that automatically updated Livewire to version 3.5.16. This update introduced the issue with the modal backdrop.
To fix it, I forced Livewire to revert to version 3.5.12 by editing my composer.json file and
"livewire/livewire": "3.5.12"
Then, I ran the following command to apply the change:
composer update livewire/livewire
After downgrading Livewire, the issue was resolved, and everything works as expected again.
I also have the same problem. I have downgraded my livewire version, but the problem still persists.