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

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,