Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Merge pull request #6508 from SimonBrandner/fix/pill-click/18283
Browse files Browse the repository at this point in the history
Fix clicking pills inside replies
  • Loading branch information
dbkr committed Jul 29, 2021
2 parents dac3eda + f0f2d36 commit 0b9c422
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/views/elements/Pill.js
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,8 @@ class Pill extends React.Component {
});
}

onUserPillClicked = () => {
onUserPillClicked = (e) => {
e.preventDefault();
dis.dispatch({
action: Action.ViewUser,
member: this.state.member,
Expand Down

0 comments on commit 0b9c422

Please sign in to comment.