client/src/components/SessionSummary.js
changeset 73 7e8cdc74d86f
parent 63 4088f8dc6b52
child 74 043477fd5c5c
--- 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>
     );
   }
 }