equal
deleted
inserted
replaced
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 ) |