chore: removed unnecessary code

This commit is contained in:
Jannat Patel
2024-05-24 15:08:18 +05:30
parent 850069d380
commit cef638e37a
4 changed files with 2 additions and 26 deletions

View File

@@ -71,7 +71,7 @@
</div>
<TextEditor
class="mt-5 reply-editor"
class="mt-5"
:content="newReply"
:mentions="mentionUsers"
@change="(val) => (newReply = val)"
@@ -158,14 +158,6 @@ const mentionUsers = computed(() => {
}
})
return users
/* [{
label: "jannat",
value: "jannat"
}, {
label: "samreen",
value: "samreen"
}] */
})
const postReply = () => {

View File

@@ -119,7 +119,7 @@ onMounted(() => {
if (props.scrollToBottom) {
setTimeout(() => {
scrollToEnd()
}, 0)
}, 100)
}
})