mirror of
https://github.com/element-hq/element-web
synced 2024-11-22 01:05:42 +03:00
Specify width on icons & comment
This commit is contained in:
parent
304e5b997a
commit
b80b08f04f
1 changed files with 3 additions and 1 deletions
|
@ -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" />;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue