actually use SVGs - oops

This commit is contained in:
Matthew Hodgson 2015-12-08 10:28:00 +00:00
parent a8e24802ab
commit b532fd046a
5 changed files with 7 additions and 7 deletions

View file

@ -276,7 +276,7 @@ var RoomSubList = React.createClass({
return connectDropTarget(
<div>
<h2 onClick={ this.onClick } className="mx_RoomSubList_label">{ this.props.collapsed ? '' : this.props.label }
<img className="mx_RoomSubList_chevron" src={ this.state.hidden ? "img/list-open.png" : "img/list-close.png" } width="10" height="10"/>
<img className="mx_RoomSubList_chevron" src={ this.state.hidden ? "img/list-open.svg" : "img/list-close.svg" } width="10" height="10"/>
</h2>
{ subList }
</div>