Fix clicking pills inside replies

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
Šimon Brandner 2021-07-29 16:30:07 +02:00
parent dac3eda9e3
commit f0f2d3621e
No known key found for this signature in database
GPG key ID: 55C211A1226CB17D

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,