Skip to content

Commit

Permalink
fix(ui): Clickable URLs are messing up formatting in the UI (#13923)
Browse files Browse the repository at this point in the history
Signed-off-by: Adrien Delannoy <[email protected]>
  • Loading branch information
Adrien-D authored Nov 22, 2024
1 parent 497f338 commit eb4f245
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/shared/components/linkified-text.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@ export default function LinkifiedText({text}: Props) {
parts.push(<span key={'text-end'}>{text.slice(lastIndex)}</span>);
}

return <>{parts}</>;
return <span>{parts}</span>;
}

0 comments on commit eb4f245

Please sign in to comment.