| changeset 17 | 877d8796b86d |
| parent 16 | e67cd18cc594 |
| child 18 | dab2a16500e0 |
--- a/client/src/components/Note.js Thu Jun 01 17:32:07 2017 +0200 +++ b/client/src/components/Note.js Thu Jun 01 18:46:34 2017 +0200 @@ -4,7 +4,8 @@ const Note = ({note}) => { return ( <div id={"note-" + note.id}> - {note.startedAt} ⇒ {note.finishedAt} {note.plain} + <h5>{note.startedAt} ⇒ {note.finishedAt}</h5> + <div dangerouslySetInnerHTML={{ __html: note.html }} /> </div> ); };