FilamentF
Filament3y ago
11 replies
fmeccanici

$livewire->dispatchBrowserEvent('copy-to-clipboard') is not working on Safari

I have a header action that dispatches the 'copy-to-clipboard' event to the browser. However this is known to not work on Safari. There are workarounds using Javascript, but I don't know how to implement them with Filament. Do you guys have a suggestion?

->action(function (self $livewire, array $data): void {
                        $livewire->dispatchBrowserEvent('copy-to-clipboard', ['text' => 'test_text'])
Was this page helpful?