mirror of
https://github.com/vector-im/element-web.git
synced 2025-09-16 19:21:13 +02:00
Specify width on icons & comment
This commit is contained in:
parent
304e5b997a
commit
b80b08f04f
@ -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…
x
Reference in New Issue
Block a user