parent
b84e7f43f7
commit
ddaed0557d
|
@ -40,7 +40,7 @@ export const FullTopic = (props: Props) => {
|
|||
return (
|
||||
<div class={clsx(styles.topicHeader, 'col-md-16 col-lg-12 offset-md-4 offset-lg-6')}>
|
||||
<h1>#{props.topic?.title}</h1>
|
||||
<p>{props.topic?.body}</p>
|
||||
<p innerHTML={props.topic?.body} />
|
||||
<div class={clsx(styles.topicActions)}>
|
||||
<Button
|
||||
variant="primary"
|
||||
|
|
|
@ -79,7 +79,7 @@ export const TopicBadge = (props: Props) => {
|
|||
</div>
|
||||
}
|
||||
>
|
||||
<div class={clsx('text-truncate', styles.description)}>{props.topic.body}</div>
|
||||
<div innerHTML={props.topic.body} class={clsx('text-truncate', styles.description)} />
|
||||
</Show>
|
||||
</a>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue
Block a user