Signed-off-by: Denis Bykhov <80476319+BykhovDenis@users.noreply.github.com>
This commit is contained in:
Denis Bykhov
2022-04-16 09:57:15 +07:00
committed by GitHub
parent 16e3ae59bc
commit 6ccb343bac
3 changed files with 8 additions and 3 deletions
@@ -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}
@@ -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}
/>
@@ -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">