Prevent clicking on quote from selecting the message

pull/621/head
Maxim Shishmarev 5 years ago
parent 027e17f7d0
commit 6c4fa6986b

@ -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