equal
deleted
inserted
replaced
60 key={ note._id } |
60 key={ note._id } |
61 onClick={ this.enterEditMode.bind(this, note) } |
61 onClick={ this.enterEditMode.bind(this, note) } |
62 onClose={ this.closeNote } |
62 onClose={ this.closeNote } |
63 onDelete={ this.confirmDelete.bind(this, note) } |
63 onDelete={ this.confirmDelete.bind(this, note) } |
64 onSave={ this.updateNote } |
64 onSave={ this.updateNote } |
65 isEditing={ this.state.editingNote && note === this.state.editingNote } /> |
65 isEditing={ this.state.editingNote && note === this.state.editingNote } |
|
66 annotationCategories={this.props.annotationCategories} /> |
66 )} |
67 )} |
67 |
68 |
68 <Modal show={this.state.showModal} onHide={this.closeModal}> |
69 <Modal show={this.state.showModal} onHide={this.closeModal}> |
69 <Modal.Body> |
70 <Modal.Body> |
70 Are you sure? |
71 Are you sure? |