From 2ec1676587d418b4cb1e2f8f35454a8e17681e1b Mon Sep 17 00:00:00 2001
From: Alexander Platov <sas_lord@mail.ru>
Date: Fri, 10 Jun 2022 21:04:11 +0300
Subject: [PATCH] Fix task Description in Activity (#2059)

Signed-off-by: Alexander Platov <sas_lord@mail.ru>
---
 plugins/view-resources/src/components/HTMLPresenter.svelte | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/plugins/view-resources/src/components/HTMLPresenter.svelte b/plugins/view-resources/src/components/HTMLPresenter.svelte
index 5b065966bb..77b7be0280 100644
--- a/plugins/view-resources/src/components/HTMLPresenter.svelte
+++ b/plugins/view-resources/src/components/HTMLPresenter.svelte
@@ -15,10 +15,11 @@
 -->
 <script lang="ts">
   import { MessageViewer } from '@anticrm/presentation'
+  import { ShowMore } from '@anticrm/ui'
 
   export let value: string
 </script>
 
-<span class="lines-limit-2">
+<ShowMore>
   <MessageViewer message={value} />
-</span>
+</ShowMore>