Show loading message if a team has been selected, in addition to showing it while loading the list of available teams. (#7307)

This commit is contained in:
Jonathan
2017-08-29 10:48:19 -04:00
committed by Harrison Healey
parent 6a312b2ad4
commit f1d1ce4e7e

View File

@@ -133,7 +133,7 @@ export default class SelectTeam extends React.Component {
</div>
);
if (!this.state.loaded) {
if (!this.state.loaded || this.state.loadingTeamId !== '') {
openContent = <LoadingScreen/>;
}