© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•2y ago•
3 replies
Jon Mason

double tooltips, workaround not working.

I have an action and it is showing double tooltips (See screenshot).

I successfully removed the browser default tooltip by adding the
->label('')
->label('')
modifier.

However, after doing this, the confirmation modal no longer has any content and is just confirm/cancel buttons (see other screenshot).

    public function deleteAction(): Action
    {
        return Action::make('delete')
            ->label('')
            ->size('lg')
            ->iconButton()
            ->icon('heroicon-o-trash')
            ->tooltip('Delete statement')
            ->requiresConfirmation()
            ->action(fn (array $arguments) => $this->deleteStatement($arguments))
         
}
    public function deleteAction(): Action
    {
        return Action::make('delete')
            ->label('')
            ->size('lg')
            ->iconButton()
            ->icon('heroicon-o-trash')
            ->tooltip('Delete statement')
            ->requiresConfirmation()
            ->action(fn (array $arguments) => $this->deleteStatement($arguments))
         
}
image.png
image.png
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

Tooltips not working on Disabled Action Button.
FilamentFFilament / ❓┊help
15mo ago
tooltips not always rendering with tippy styles
FilamentFFilament / ❓┊help
3y ago
Problem with tooltips style not contain the whole text
FilamentFFilament / ❓┊help
15mo ago