TableColumn with url() results in description not selectable

I dont know about you, but we find it useful for our name column on our Users table to include their email address in the description() area. The problem is that when combined with url() on the column, it wraps the entire cell in anchors and now the description field is no longer selectable. Is there a simple solution for this?
TextColumn::make('name')
    ->description(fn ($record) => $record->email)
    ->url(fn ($record) => route('property-managers.show', $record->property_manager_id)),
Solution
Return an HtmlString for the description with an anchor link in it?
Was this page helpful?