diff -r 7e8cdc74d86f -r 043477fd5c5c client/src/components/SessionSummary.js --- a/client/src/components/SessionSummary.js Thu Jun 22 11:58:27 2017 +0200 +++ b/client/src/components/SessionSummary.js Thu Jun 22 12:09:48 2017 +0200 @@ -3,6 +3,7 @@ import { Panel, ListGroup, ListGroupItem } from 'react-bootstrap'; import _ from 'lodash'; import '../App.css'; +import {formatTimestamp} from '../utils'; class SessionSummary extends Component { render() { @@ -11,7 +12,7 @@ {this.props.notes.map((note) => - {note.startedAt} → {note.finishedAt} + {formatTimestamp(note.startedAt)} → {formatTimestamp(note.finishedAt)} {_.words(note.plain).length} words