Infolist link not clickable

I have added a link to an infolist using the code from the documentation and it there are no errors its just not creating a clickable link. Sure I'm jusrt being dumb but cant see why...
Thanks anybody!

TextEntry::make('Add Item')
->url(fn (Order $record): string => route('createItem', ['id' => $record])),
Solution
use Filament\Infolists\Components\Actions;
use Filament\Infolists\Components\Actions\Action;

..

Actions::make([
    Action::make('addItem')
        ->link()
        ->url(fn(Order $record): string => route('createItem', ['id' => $record])),
])

?
Was this page helpful?