Add Riot logo via more targeted replacement

This commit is contained in:
J. Ryan Stinnett 2019-01-22 21:53:46 -06:00
parent a2c84e7702
commit 6d7492d92a

View File

@ -24,9 +24,9 @@ const i = [1, 2, 3, 4, 5][Math.floor(Math.random() * 5)];
const DEFAULT_LOGO_URI = "themes/riot/img/logos/riot-im-logo-" + i + ".svg";
module.exports = React.createClass({
displayName: 'VectorAuthHeader',
displayName: 'VectorAuthHeaderLogo',
statics: {
replaces: 'AuthHeader',
replaces: 'AuthHeaderLogo',
},
propTypes: {
icon: PropTypes.string,
@ -34,11 +34,9 @@ module.exports = React.createClass({
render: function() {
return (
<div className="mx_AuthHeader">
<div className="mx_AuthHeader_logo">
<div className="mx_AuthHeaderLogo">
<img src={this.props.icon || DEFAULT_LOGO_URI} alt="Riot" />
</div>
</div>
);
},
});