Skip to content

Commit bc3ee94

Browse files
committed
fix warning about missing thead
1 parent 5aa468f commit bc3ee94

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,9 @@ module.exports = React.createClass({
135135
<input ref="roomAlias" placeholder="Join a room (e.g. #foo:domain.com)" className="mx_RoomDirectory_input" size="64" onKeyUp={ this.onKeyUp }/>
136136
<div className="mx_RoomDirectory_tableWrapper">
137137
<table className="mx_RoomDirectory_table">
138-
<tr><th width="45%">Room</th><th width="45%">Alias</th><th width="10%">Members</th></tr>
138+
<thead>
139+
<tr><th width="45%">Room</th><th width="45%">Alias</th><th width="10%">Members</th></tr>
140+
</thead>
139141
{ this.getRows(this.state.roomAlias) }
140142
</table>
141143
</div>

0 commit comments

Comments
 (0)