Split and Stack table layout issue.

Adding ->description() or
->url()
to TextColumn breaks the layout. Is there any fix for this? I want to use custom url for headings.

Tables\Columns\Layout\Split::make([
Tables\Columns\ViewColumn::make('domain')
  ->view('filament.tables.columns.favicon')
  ->grow(false),

  Tables\Columns\Layout\Stack::make([
    Tables\Columns\TextColumn::make('headline')
      ->url('https://example.com'),

    Tables\Columns\TextColumn::make('url'),
  ]),
])->from('md'),
without-url.png
with-url.png
Was this page helpful?