vue-advanced-chat icon indicating copy to clipboard operation
vue-advanced-chat copied to clipboard

Reply to file is not clickable

Open georgy-komarov opened this issue 2 years ago • 2 comments

Describe the bug

File is unclickable in reply.

Steps to reproduce

  1. Send a message with a file.
  2. Reply to this message.
  3. Try to open file from reply message
  4. Nothing happens

Expected behavior

It is possible to open/download file from reply message

Screenshots

ScreenRecorderProject7

Device (please complete the following information)

  • OS: Windows 11
  • Browser: Chrome 108
  • Package version: 2.0.6 (demo)

Additional context

georgy-komarov avatar Dec 15 '22 16:12 georgy-komarov

Ideally, clicking on a reply should scroll to the original message. It's not that easy due to pagination though

antoine92190 avatar Dec 23 '22 05:12 antoine92190

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

urkh avatar Jan 29 '24 13:01 urkh