© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•3y ago•
4 replies
Chrispian

requiresConfirmation modal is empty after composer update

On our staging server one of our developers has update composer (composer update) and the requiresConfirmation() modal is no longer working. The background fades like the modal was triggered and other modals still have their content. It seems to only be happening with the requiresConfirmation. I've tried going back to a previous version of livewire, making sure all caches are cleared, dumping composer autoload etc. The changelog doesn't note anything change with this method and there are no errors in the php log when using the modal. The same code works fine on prod. No errors or warning in console and all logs are empty. The modal is just blank.

It's very similar to this, except it happens BEFORE the confirmation instead of after. If you remove the requiresConfirmation() method, works fine. https://github.com/filamentphp/filament/issues/919

    protected function getActions(): array
    {
        return [
            Action::make('exports')
                // call Maatwebsite Export
                ->action(fn() => ( new CustomerMageLogExport( $this->getTable() ) ) ) )
                ->requiresConfirmation(),
        ];
    }
    protected function getActions(): array
    {
        return [
            Action::make('exports')
                // call Maatwebsite Export
                ->action(fn() => ( new CustomerMageLogExport( $this->getTable() ) ) ) )
                ->requiresConfirmation(),
        ];
    }


Attached are the currently installed libs.

Any ideas of things to try? The thread linked above the error just went away but nothing we've tried seems to work. I suspect some sort of conflict but there are no errors anywhere so it's hard to track down. I'm still digging and will update if I find anything.
message.txt8.07KB
GitHub
requiresConfirmation on table action ends in overlay and errors · I...
Package filament/tables Package Version v2.5.31 Laravel Version v8.76.2 Livewire Version v2.8.2 PHP Version 8.0.13 Bug description I am using the table and forms package outside of filament admin! ...
requiresConfirmation on table action ends in overlay and errors · I...
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources
Was this page helpful?

Similar Threads

Recent Announcements

Similar Threads

Error after composer update
FilamentFFilament / ❓┊help
17mo ago
Table overflow after composer update
FilamentFFilament / ❓┊help
3y ago
Broken Paginator after composer update ?
FilamentFFilament / ❓┊help
3y ago
Getting a 404 after composer update
FilamentFFilament / ❓┊help
2y ago