Skip to content

Commit

Permalink
BUGFIX: update taskname not working
Browse files Browse the repository at this point in the history
  • Loading branch information
alexfruehwirth committed Jul 12, 2016
1 parent 75f752b commit c9b3a20
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/todoist-sidebar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -104,13 +104,14 @@ var TodoistSidebar = React.createClass({
</div>
}else{
return <div>
<div onClick={this.onEditClick} >
<input
className="n1todoist-textinput"
type="text"
disabled="true"
value={this.state.label}
onClick={this.onEditClick}
onChange={this.onLabelChange} />
</div>
<div className="n1todoist-btnrow">
<button className="n1todoist-iconbtn n1todoist-iconbtn--done" onClick={this.onDoneClick} >{this.state.done ? "Undo" : "Done"}</button>
<button className="n1todoist-iconbtn n1todoist-iconbtn--delete" onClick={this.onDeleteClick} >Delete</button>
Expand Down

0 comments on commit c9b3a20

Please sign in to comment.