Merge pull request #621 from msgmaxim/select-messages

Prevent clicking on quote from selecting the message
pull/626/head
Maxim Shishmarev 5 years ago committed by GitHub
commit d1c450a213
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -800,7 +800,8 @@
const isFromMe = contact ? contact.id === this.OUR_NUMBER : false;
const onClick = noClick
? null
: () => {
: (event) => {
event.stopPropagation();
this.trigger('scroll-to-message', {
author,
id,

Loading…
Cancel
Save