FilamentF
Filament3y ago
6 replies
LiruLiruLiru

filament-actions::group label not working?

Hey guys! I'm trying to use the label for <x-filament-actions::group /> component without any luck, I just see the icon without the text. Has someone bumped into this issue? This is what I have

  <x-filament-actions::group
            :actions="[
                $this->createFromTemplateAction,
                $this->createNewAction,
            ]"
            label="Actions"
            icon="phosphor-caret-down"
            iconPosition={{\Filament\Support\Enums\IconPosition::After}}
            size={{\Filament\Support\Enums\ActionSize::Large}}
            color="primary"
        />
Solution
Add the meta tag "button"
Was this page helpful?