change event wording

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
pull/4056/head
Michael Telatynski 2017-05-28 13:08:09 +01:00
parent c2c417b207
commit 6969baa5a6
1 changed files with 3 additions and 3 deletions

View File

@ -71,17 +71,17 @@ module.exports = React.createClass({
},
onMemberListButtonClick: function() {
Analytics.trackEvent('RightPanel', 'memberListButtonClick');
Analytics.trackEvent('Right Panel', 'Member List Button', 'click');
this.setState({ phase: this.Phase.MemberList });
},
onFileListButtonClick: function() {
Analytics.trackEvent('RightPanel', 'fileListButtonClick');
Analytics.trackEvent('Right Panel', 'File List Button', 'click');
this.setState({ phase: this.Phase.FilePanel });
},
onNotificationListButtonClick: function() {
Analytics.trackEvent('RightPanel', 'notificationListButtonClick');
Analytics.trackEvent('Right Panel', 'Notification List Button', 'click');
this.setState({ phase: this.Phase.NotificationPanel });
},