--- a/client/src/components/SessionSummary.js Thu Jun 22 10:47:10 2017 +0200
+++ b/client/src/components/SessionSummary.js Thu Jun 22 11:58:27 2017 +0200
@@ -7,18 +7,16 @@
class SessionSummary extends Component {
render() {
return (
- <Panel>
- <ListGroup>
- {this.props.notes.map((note) =>
- <ListGroupItem key={note.get('_id')}>
- <a href={'#note-' + note.get('_id')}>
- <span className="text-muted">{note.startedAt} → {note.finishedAt}</span>
- <span className="pull-right">{_.words(note.plain).length} words</span>
- </a>
- </ListGroupItem>
- )}
- </ListGroup>
- </Panel>
+ <ListGroup>
+ {this.props.notes.map((note) =>
+ <ListGroupItem key={note.get('_id')}>
+ <a href={'#note-' + note.get('_id')}>
+ <span className="text-muted">{note.startedAt} → {note.finishedAt}</span>
+ <span className="pull-right">{_.words(note.plain).length} words</span>
+ </a>
+ </ListGroupItem>
+ )}
+ </ListGroup>
);
}
}