Use new method of getting team icon

This was necessary because the team token may not be known when registering, but domain is. Storing the icon under the "common" directory is the chosen solution to this.
pull/21833/head
Luke Barnard 2017-02-09 09:24:46 +00:00
parent c2d5b72d68
commit 747c0c44a6
1 changed files with 6 additions and 1 deletions

View File

@ -426,7 +426,12 @@ module.exports = React.createClass({
return (
<div className="mx_Login">
<div className="mx_Login_box">
<LoginHeader icon={this.state.teamSelected ? this.state.teamSelected.icon : null}/>
<LoginHeader
icon={this.state.teamSelected ?
"https://riot.im/rts/static/common/" +
this.state.teamSelected.domain + "/icon.png" :
null}
/>
{this._getRegisterContentJsx()}
<LoginFooter />
</div>