How can i set max width for text column in table

Hi filament community, how can i set max width for column 'name'.
i try to add class max-w-xs, but if below description is too long will break ui.
I want when below description is too long, it will go next line.
How can i solve this case? I dont want to set limit words to below description

Here is my code
                Tables\Columns\TextColumn::make('name')
                ->description(function ($record) {
                    return 'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa';
                })
                ->searchable()
                ->wrap()
                ->limit(2)
                ->extraAttributes([
                    'class' => 'max-w-xs'
                ]),
image.png
Was this page helpful?