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

Fix clicking pills inside replies
This commit is contained in:
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

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,