Fix not rendering on team member update in more direct channels modal (#2891)

This commit is contained in:
Joram Wilander
2016-05-05 15:32:56 -04:00
committed by Corey Hulen
parent 3b8b23218d
commit cf05c92eff

View File

@@ -60,6 +60,10 @@ export default class MoreDirectChannels extends React.Component {
return true;
}
if (!Utils.areObjectsEqual(nextState.teamMembers, this.state.teamMembers)) {
return true;
}
return false;
}