Specify width on icons & comment

pull/2379/head
David Baker 2016-10-04 11:14:36 +01:00
parent 304e5b997a
commit b80b08f04f
1 changed files with 3 additions and 1 deletions

View File

@ -179,7 +179,9 @@ export default class NetworkDropdown extends React.Component {
name = network;
}
if (this.props.config.networks[network].icon) {
icon = <img src={this.props.config.networks[network].icon} />;
// omit height here so if people define a non-square logo in the config, it
// will keep the aspect when it scales
icon = <img src={this.props.config.networks[network].icon} width="16" />;
} else {
icon = <img src={iconPath} width="16" height="16" />;
}