Skip to content

Commit

Permalink
events hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
abdurrahmanekr committed Aug 19, 2020
1 parent b406d0d commit 216b504
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-chat-elements",
"version": "10.10.1",
"version": "10.10.2",
"description": "Reactjs chat components",
"author": "Avare Kodcu <[email protected]>",
"main": "dist/main.js",
Expand Down
2 changes: 1 addition & 1 deletion src/ChatList/ChatList.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export class ChatList extends Component {
{...x}
onAvatarError={(e) => this.onAvatarError(x, i, e)}
onContextMenu={(e) => this.onContextMenu(x, i, e)}
onClick={() => this.onClick(x, i, e)}/>
onClick={(e) => this.onClick(x, i, e)}/>
))
}
</div>
Expand Down
6 changes: 3 additions & 3 deletions src/MeetingList/MeetingList.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ export class MeetingList extends Component {
{...x}
onAvatarError={(e) => this.onAvatarError(x, i, e)}
onContextMenu={(e) => this.onContextMenu(x, i, e)}
onClick={() => this.onClick(x, i, e)}
onMeetingClick={() => this.onMeetingClick(x, i, e)}
onShareClick={() => this.onShareClick(x, i, e)}/>
onClick={(e) => this.onClick(x, i, e)}
onMeetingClick={(e) => this.onMeetingClick(x, i, e)}
onShareClick={(e) => this.onShareClick(x, i, e)}/>
))
}
</div>
Expand Down

0 comments on commit 216b504

Please sign in to comment.