change event wording

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
Michael Telatynski 2017-05-28 13:08:09 +01:00
parent c2c417b207
commit 6969baa5a6

View file

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