Skip to content

Commit c12c716

Browse files
committed
fix URLs on image
1 parent 2cae5e7 commit c12c716

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/skins/vector/views/organisms/RoomSubList.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ var RoomSubList = React.createClass({
265265
return connectDropTarget(
266266
<div>
267267
<h2 onClick={ this.onClick } className="mx_RoomSubList_label">{ this.props.collapsed ? '' : this.props.label }
268-
<img className="mx_RoomSubList_chevron" src={ this.state.hidden ? "/img/list-open.png" : "/img/list-close.png" } width="10" height="10"/>
268+
<img className="mx_RoomSubList_chevron" src={ this.state.hidden ? "img/list-open.png" : "img/list-close.png" } width="10" height="10"/>
269269
</h2>
270270
{ subList }
271271
</div>

0 commit comments

Comments
 (0)