Merge pull request #6508 from SimonBrandner/fix/pill-click/18283

Fix clicking pills inside replies
pull/21833/head
David Baker 2021-07-29 15:40:27 +01:00 committed by GitHub
commit 0b9c422d47
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -192,7 +192,8 @@ class Pill extends React.Component {
});
}
onUserPillClicked = () => {
onUserPillClicked = (e) => {
e.preventDefault();
dis.dispatch({
action: Action.ViewUser,
member: this.state.member,