Fix line wrapping and linkify URLs again

This commit is contained in:
Justin Edmund 2022-12-29 03:24:41 -08:00
parent 06205b55e6
commit ab81b70b13
2 changed files with 4 additions and 1 deletions

View file

@ -58,6 +58,7 @@
&.ReadOnly {
line-height: 1.4;
white-space: pre-wrap;
&.Visible {
display: block;

View file

@ -336,7 +336,9 @@ const PartyDetails = (props: Props) => {
)
const readOnly = (
<section className={readOnlyClasses}>{embeddedDescription}</section>
<section className={readOnlyClasses}>
<Linkify>{embeddedDescription}</Linkify>
</section>
)
return (