vue-advanced-chat
vue-advanced-chat copied to clipboard
Reply to file is not clickable
Describe the bug
File is unclickable in reply.
Steps to reproduce
- Send a message with a file.
- Reply to this message.
- Try to open file from reply message
- Nothing happens
Expected behavior
It is possible to open/download file from reply message
Screenshots
Device (please complete the following information)
- OS: Windows 11
- Browser: Chrome 108
- Package version: 2.0.6 (demo)
Additional context
Ideally, clicking on a reply should scroll to the original message. It's not that easy due to pagination though
does auto scrolling work in text-only responses or is it only with file responses?
i have this:
{
_id: data[i].id,
indexId: data[i].id,
senderId: data[i].sender_id,
content: data[i].transcription,
date: data[i].date,
timestamp: data[i].time,
replyMessage: {
_id: data[i].reply?.id,
indexId: data[i].reply?.id,
content: data[i].reply?.transcription
}
}
but when i click the quoted message, the scroll does not work