Merge pull request #673 from vincentbavitz/fix-multi-select

Fixed multi select by preventing select on clicking audio element in …
pull/680/head
Maxim Shishmarev 6 years ago committed by GitHub
commit 222bd7af61
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -384,6 +384,10 @@ export class Message extends React.PureComponent<Props, State> {
} else if (!firstAttachment.pending && isAudio(attachments)) {
return (
<audio
role="button"
onClick={(e: any) => {
e.stopPropagation();
}}
controls={true}
className={classNames(
'module-message__audio-attachment',

Loading…
Cancel
Save