Skip to content

Commit 216b504

Browse files
events hotfix
1 parent b406d0d commit 216b504

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-chat-elements",
3-
"version": "10.10.1",
3+
"version": "10.10.2",
44
"description": "Reactjs chat components",
55
"author": "Avare Kodcu <[email protected]>",
66
"main": "dist/main.js",

src/ChatList/ChatList.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export class ChatList extends Component {
3737
{...x}
3838
onAvatarError={(e) => this.onAvatarError(x, i, e)}
3939
onContextMenu={(e) => this.onContextMenu(x, i, e)}
40-
onClick={() => this.onClick(x, i, e)}/>
40+
onClick={(e) => this.onClick(x, i, e)}/>
4141
))
4242
}
4343
</div>

src/MeetingList/MeetingList.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ export class MeetingList extends Component {
4747
{...x}
4848
onAvatarError={(e) => this.onAvatarError(x, i, e)}
4949
onContextMenu={(e) => this.onContextMenu(x, i, e)}
50-
onClick={() => this.onClick(x, i, e)}
51-
onMeetingClick={() => this.onMeetingClick(x, i, e)}
52-
onShareClick={() => this.onShareClick(x, i, e)}/>
50+
onClick={(e) => this.onClick(x, i, e)}
51+
onMeetingClick={(e) => this.onMeetingClick(x, i, e)}
52+
onShareClick={(e) => this.onShareClick(x, i, e)}/>
5353
))
5454
}
5555
</div>

0 commit comments

Comments
 (0)