Skip to content
Snippets Groups Projects
Commit 9b92d868 authored by Tuukka Turu's avatar Tuukka Turu
Browse files

Allow search result description to render html

parent 7edb97d1
No related branches found
No related tags found
No related merge requests found
......@@ -336,7 +336,9 @@ export class HyListItem {
<div class={classInfoContainerLink}>{this.url}</div>
</div>
{this.itemDescription && <div class={classInfoContainerDescription}>{this.itemDescription}</div>}
{this.itemDescription && (
<div class={classInfoContainerDescription} innerHTML={this.itemDescription}></div>
)}
</div>
</a>
</article>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment