From ceb243fbb289fd9faec7854beef643d83e99b105 Mon Sep 17 00:00:00 2001 From: Reed Garmsen Date: Thu, 9 Jul 2015 16:04:13 -0700 Subject: The options to change member roles are now links so that they have the 'click' mouse hand when hovered over --- web/react/components/member_list_team.jsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'web') diff --git a/web/react/components/member_list_team.jsx b/web/react/components/member_list_team.jsx index 3613d97d8..cfb473e5e 100644 --- a/web/react/components/member_list_team.jsx +++ b/web/react/components/member_list_team.jsx @@ -92,10 +92,10 @@ var MemberListTeamItem = React.createClass({ { server_error } -- cgit v1.2.3-1-g7c22 From 95a1540dffe1c279b109e73b47f016e6b8d4a663 Mon Sep 17 00:00:00 2001 From: Reed Garmsen Date: Thu, 9 Jul 2015 16:25:57 -0700 Subject: Leave result of _getMoreChannels unitialized if it does not yet exist in browser storage to know when list of more channels is loading vs when its empty --- web/react/components/more_channels.jsx | 5 +++++ web/react/stores/channel_store.jsx | 4 ---- 2 files changed, 5 insertions(+), 4 deletions(-) (limited to 'web') diff --git a/web/react/components/more_channels.jsx b/web/react/components/more_channels.jsx index 1af259853..f7a88e595 100644 --- a/web/react/components/more_channels.jsx +++ b/web/react/components/more_channels.jsx @@ -66,6 +66,11 @@ module.exports = React.createClass({ if (this.state.channels != null) moreChannels = this.state.channels; + console.log("Check: " + moreChannels) + + if (moreChannels) + console.log("Length: " + moreChannels.length) + return (