mirror of
https://github.com/element-hq/element-web
synced 2024-11-27 11:47:23 +03:00
Made the menu button a clickable image rather than an input element
This commit is contained in:
parent
58d9789645
commit
52f5061cc5
1 changed files with 1 additions and 1 deletions
|
@ -412,7 +412,7 @@ module.exports = React.createClass({
|
|||
}
|
||||
|
||||
var editButton = (
|
||||
<input type="image" src="img/icon_context_message.svg" alt="Options" title="Options" width="19" height="19" className="mx_EventTile_editButton" onClick={this.onEditClicked} />
|
||||
<img className="mx_EventTile_editButton" src="img/icon_context_message.svg" width="19" height="19" alt="Options" title="Options" onClick={this.onEditClicked} />
|
||||
);
|
||||
|
||||
return (
|
||||
|
|
Loading…
Reference in a new issue