This commit is contained in:
Josh Perez 2023-02-22 16:07:16 -05:00
commit 954ef72cb7

View file

@ -2097,6 +2097,9 @@ export class Message extends React.PureComponent<Props, State> {
? 'module-message__reactions--outgoing'
: 'module-message__reactions--incoming'
)}
onDoubleClick={ev => {
ev.stopPropagation();
}}
>
{toRender.map((re, i) => {
const isLast = i === toRender.length - 1;