Fix line wrapping and linkify URLs again
This commit is contained in:
parent
06205b55e6
commit
ab81b70b13
2 changed files with 4 additions and 1 deletions
|
|
@ -58,6 +58,7 @@
|
|||
|
||||
&.ReadOnly {
|
||||
line-height: 1.4;
|
||||
white-space: pre-wrap;
|
||||
|
||||
&.Visible {
|
||||
display: block;
|
||||
|
|
|
|||
|
|
@ -336,7 +336,9 @@ const PartyDetails = (props: Props) => {
|
|||
)
|
||||
|
||||
const readOnly = (
|
||||
<section className={readOnlyClasses}>{embeddedDescription}</section>
|
||||
<section className={readOnlyClasses}>
|
||||
<Linkify>{embeddedDescription}</Linkify>
|
||||
</section>
|
||||
)
|
||||
|
||||
return (
|
||||
|
|
|
|||
Loading…
Reference in a new issue