Skip to content
This repository has been archived by the owner on Mar 14, 2020. It is now read-only.

Commit

Permalink
If this isn't the best I don't know what is.
Browse files Browse the repository at this point in the history
Fixes #12.
  • Loading branch information
jbalogh-stripe committed Dec 20, 2014
1 parent 18c496a commit 4beb376
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion js/app.jsx
Expand Up @@ -278,7 +278,7 @@ var JobTable = {
<div>
<h3>
{this.title} ({jobs.length})
<input className="form-control" placeholder="Filter by user or text" onChange={this.props.onFilter} value={this.props.filter} />
<input className="form-control" placeholder="Filter by user or text" onChange={this.props.onFilter} value={this.props.filter} autoFocus={this.autoFocus} />
</h3>
<table className="table sortable list-view">
<thead>
Expand Down Expand Up @@ -319,6 +319,7 @@ var RunningJobs = React.createClass({
title: 'Running',
headers: 'user name started duration map reduce'.split(' '),
rowClass: () => RunningJobRow,
autoFocus: true,
});


Expand Down

0 comments on commit 4beb376

Please sign in to comment.