client/src/components/SessionSummary.js
changeset 151 57d63a248f0d
parent 143 cfcbf4bc66f1
child 161 a642639dbc07
equal deleted inserted replaced
150:97536386b397 151:57d63a248f0d
     7   <ul className="list-group">
     7   <ul className="list-group">
     8     {notes.map((note) =>
     8     {notes.map((note) =>
     9       <li className="list-group-item" key={note.get('_id')}>
     9       <li className="list-group-item" key={note.get('_id')}>
    10         <a href={'#note-' + note.get('_id')}>
    10         <a href={'#note-' + note.get('_id')}>
    11           <span className="text-muted">{formatTimestamp(note.startedAt)} → {formatTimestamp(note.finishedAt)}</span>
    11           <span className="text-muted">{formatTimestamp(note.startedAt)} → {formatTimestamp(note.finishedAt)}</span>
    12           <span className="pull-right">{_.words(note.plain).length} words</span>
    12           <span className="float-right">{_.words(note.plain).length} words</span>
    13         </a>
    13         </a>
    14       </li>
    14       </li>
    15     )}
    15     )}
    16   </ul>
    16   </ul>
    17 )
    17 )