Signed-off-by: Denis Bykhov <80476319+BykhovDenis@users.noreply.github.com>
This commit is contained in:
Denis Bykhov 2022-04-16 08:57:15 +06:00 committed by GitHub
parent 16e3ae59bc
commit 6ccb343bac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 3 deletions

View File

@ -164,7 +164,7 @@
<AttachmentRefInput
bind:this={refInput}
space={message.space}
_class={chunter.class.Comment}
_class={message._class}
objectId={message._id}
content={message.content}
showSend={false}

View File

@ -195,7 +195,7 @@
<div class="mr-4 ml-4 mb-4 mt-2">
<AttachmentRefInput
space={parent.space}
_class={chunter.class.Comment}
_class={chunter.class.ThreadMessage}
objectId={commentId}
on:message={onMessage}
/>

View File

@ -198,7 +198,12 @@
{/if}
</div>
<div class="ref-input">
<AttachmentRefInput space={currentSpace} _class={chunter.class.Comment} objectId={commentId} on:message={onMessage} />
<AttachmentRefInput
space={currentSpace}
_class={chunter.class.ThreadMessage}
objectId={commentId}
on:message={onMessage}
/>
</div>
<style lang="scss">