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>