Skip to content

Commit

Permalink
Ensure html format
Browse files Browse the repository at this point in the history
  • Loading branch information
Philipp Hinrichsen committed Feb 22, 2016
1 parent 02f8f18 commit c730d6f
Showing 1 changed file with 44 additions and 42 deletions.
86 changes: 44 additions & 42 deletions src/js/components/TaskFileListComponent.jsx
Expand Up @@ -198,48 +198,50 @@ var TaskFileListComponent = React.createClass({
return (
<table className="table table-hover table-selectable task-file-list">
<thead>
<th className={idClassSet}>
<span onClick={this.sortBy.bind(null, "name")}
className={headerClassSet}>
ID {this.getCaret("name")}
</span>
</th>
<th className={modeClassSet}>
<span onClick={this.sortBy.bind(null, "mode")}
className={headerClassSet}>
Permissions {this.getCaret("mode")}
</span>
</th>
<th className={nlinkClassSet}>
<span onClick={this.sortBy.bind(null, "nlink")}
className={headerClassSet}>
Nlink {this.getCaret("nlink")}
</span>
</th>
<th className={uidClassSet}>
<span onClick={this.sortBy.bind(null, "uid")}
className={headerClassSet}>
Uid {this.getCaret("uid")}
</span>
</th>
<th className={gidClassSet}>
<span onClick={this.sortBy.bind(null, "gid")}
className={headerClassSet}>
Gid {this.getCaret("gid")}
</span>
</th>
<th className={sizeClassSet}>
<span onClick={this.sortBy.bind(null, "size")}
className={headerClassSet}>
Size {this.getCaret("size")}
</span>
</th>
<th className={mtimeClassSet}>
<span onClick={this.sortBy.bind(null, "mtime")}
className={headerClassSet}>
Last Modified {this.getCaret("mtime")}
</span>
</th>
<tr>
<th className={idClassSet}>
<span onClick={this.sortBy.bind(null, "name")}
className={headerClassSet}>
ID {this.getCaret("name")}
</span>
</th>
<th className={modeClassSet}>
<span onClick={this.sortBy.bind(null, "mode")}
className={headerClassSet}>
Permissions {this.getCaret("mode")}
</span>
</th>
<th className={nlinkClassSet}>
<span onClick={this.sortBy.bind(null, "nlink")}
className={headerClassSet}>
Nlink {this.getCaret("nlink")}
</span>
</th>
<th className={uidClassSet}>
<span onClick={this.sortBy.bind(null, "uid")}
className={headerClassSet}>
Uid {this.getCaret("uid")}
</span>
</th>
<th className={gidClassSet}>
<span onClick={this.sortBy.bind(null, "gid")}
className={headerClassSet}>
Gid {this.getCaret("gid")}
</span>
</th>
<th className={sizeClassSet}>
<span onClick={this.sortBy.bind(null, "size")}
className={headerClassSet}>
Size {this.getCaret("size")}
</span>
</th>
<th className={mtimeClassSet}>
<span onClick={this.sortBy.bind(null, "mtime")}
className={headerClassSet}>
Last Modified {this.getCaret("mtime")}
</span>
</th>
</tr>
</thead>
<tbody>
{this.getFileNodes()}
Expand Down

0 comments on commit c730d6f

Please sign in to comment.