From 4f7056e38d485ab3e0f9d6ee93d2ecb6a97f8b3a Mon Sep 17 00:00:00 2001
From: Tuukka Turu <tuukka.turu@druid.fi>
Date: Thu, 28 Jan 2021 15:03:46 +0200
Subject: [PATCH] Process flowbox description to support html tags

---
 src/components/process-flow-box/process-flow-box.tsx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/components/process-flow-box/process-flow-box.tsx b/src/components/process-flow-box/process-flow-box.tsx
index cd8e67db..3a571579 100644
--- a/src/components/process-flow-box/process-flow-box.tsx
+++ b/src/components/process-flow-box/process-flow-box.tsx
@@ -50,7 +50,7 @@ export class ProcessFlowBox implements ComponentInterface {
           </div>
           <div class={classContentVariant}>
             <h3 class="hy-process-flow-box__title">{this.boxTitle}</h3>
-            <div class="hy-process-flow-box__description">{this.boxDescription}</div>
+            <div class="hy-process-flow-box__description" innerHTML={this.boxDescription}></div>
           </div>
         </div>
         <hy-box mb="1.75, 1.75, 2, 2.5" />
-- 
GitLab