RichEditor strange formatting when using links

The following is the form schema RichEditor definition:
RichEditor::make('description')
                ->maxLength(65535),

In table builder I use the following code:
Tables\Columns\TextColumn::make('description')
    ->html()
    ->extraAttributes(['class' => 'prose'])
    ->wrap()
    ->searchable(),

I've tried removing both wrap and extraAttributes with no success, the content is still rendered wrong (as you can see from the attached images).
Any idea how to fix this? Thanks!
Screenshot_2024-02-07_at_07.40.41.png
Screenshot_2024-02-07_at_07.41.22.png
Was this page helpful?