client/src/components/NotesList.js
changeset 138 a1fb2ced3049
parent 125 c653f49fabfb
child 143 cfcbf4bc66f1
equal deleted inserted replaced
137:279e1dffa213 138:a1fb2ced3049
    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?