Message: Don't propagate sender avatar click event

This commit is contained in:
Scott Nonnenberg 2021-09-07 12:38:32 -07:00 committed by GitHub
parent 0c741adbe4
commit 71b50aae00
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions

View File

@ -1198,7 +1198,12 @@ export class Message extends React.PureComponent<Props, State> {
<button
type="button"
className="module-message__author-avatar"
onClick={() => showContactModal(author.id)}
onClick={(event: React.MouseEvent<HTMLButtonElement, MouseEvent>) => {
event.stopPropagation();
event.preventDefault();
showContactModal(author.id);
}}
tabIndex={0}
>
<Avatar