client/src/components/Note.js
changeset 33 238818343253
parent 18 dab2a16500e0
child 74 043477fd5c5c
--- a/client/src/components/Note.js	Wed Jun 14 15:29:01 2017 +0200
+++ b/client/src/components/Note.js	Wed Jun 14 16:06:40 2017 +0200
@@ -3,7 +3,7 @@
 
 const Note = ({note}) => {
   return (
-    <div id={"note-" + note.id} className="note">
+    <div id={"note-" + note._id} className="note">
       <span className="start">{note.startedAt}</span>
       <span className="finish">{note.finishedAt}</span>
       <div dangerouslySetInnerHTML={{ __html: note.html }} />