From b9291eb647e2507125d27087df335fdd839ab791 Mon Sep 17 00:00:00 2001 From: Denis Bykhov <80476319+BykhovDenis@users.noreply.github.com> Date: Fri, 11 Mar 2022 15:06:02 +0600 Subject: [PATCH] Comment attachments presenter (#1128) Signed-off-by: Denis Bykhov <80476319+BykhovDenis@users.noreply.github.com> --- .../chunter-resources/src/components/CommentPresenter.svelte | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/chunter-resources/src/components/CommentPresenter.svelte b/plugins/chunter-resources/src/components/CommentPresenter.svelte index bc98d3e0ce..cb0b68ca1a 100644 --- a/plugins/chunter-resources/src/components/CommentPresenter.svelte +++ b/plugins/chunter-resources/src/components/CommentPresenter.svelte @@ -15,6 +15,7 @@ --> <script lang="ts"> + import { AttachmentDocList } from '@anticrm/attachment-resources' import type { Comment } from '@anticrm/chunter' import { formatName } from '@anticrm/contact' import { Avatar, getClient, MessageViewer } from '@anticrm/presentation' @@ -41,6 +42,7 @@ </div> <ShowMore limit={126} fixed> <MessageViewer message={value.message}/> + <AttachmentDocList {value} /> </ShowMore> </div> </div>