Skip to content

Commit

Permalink
Merge 3ccad18 into a5babc7
Browse files Browse the repository at this point in the history
  • Loading branch information
kamaradclimber committed Feb 13, 2019
2 parents a5babc7 + 3ccad18 commit 08e5972
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/js/components/TaskListComponent.jsx
Expand Up @@ -163,7 +163,7 @@ var TaskListComponent = React.createClass({
});

var idClassSet = classNames({
"cell-highlighted": state.sortKey === "id"
"cell-highlighted": state.sortKey === "host"
});

var statusClassSet = classNames("text-center", {
Expand Down Expand Up @@ -207,9 +207,9 @@ var TaskListComponent = React.createClass({
onChange={props.toggleAllTasks} />
</th>
<th className={idClassSet}>
<span onClick={this.sortBy.bind(null, "id")}
<span onClick={this.sortBy.bind(null, "host")}
className={headerClassSet}>
ID {this.getCaret("id")}
ID {this.getCaret("host")}
</span>
</th>
<th className={hasHealthClassSet}>
Expand Down
2 changes: 1 addition & 1 deletion src/js/components/TaskListItemComponent.jsx
Expand Up @@ -202,7 +202,7 @@ var TaskListItemComponent = React.createClass({
}

var idClassSet = classNames({
"cell-highlighted": sortKey === "id"
"cell-highlighted": sortKey === "host"
});

var versionClassSet = classNames("text-right", {
Expand Down

0 comments on commit 08e5972

Please sign in to comment.