From 1716f43cac769a480d86683eedd4453fffe95f76 Mon Sep 17 00:00:00 2001 From: Afanasii Kurakin Date: Fri, 9 Sep 2016 19:17:42 +0800 Subject: [PATCH] Fixed typo in time format YYYY-MM-dd > YYYY-MM-DD --- src/scripts/app/components/dashboard/ActualBrew.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scripts/app/components/dashboard/ActualBrew.jsx b/src/scripts/app/components/dashboard/ActualBrew.jsx index 442ec65..48e635f 100644 --- a/src/scripts/app/components/dashboard/ActualBrew.jsx +++ b/src/scripts/app/components/dashboard/ActualBrew.jsx @@ -32,7 +32,7 @@ var ActualBrew = React.createClass({ var cx = React.addons.classSet; var brew = this.props.brew; - var startTimeFormatted = brew.startTime ? moment(brew.startTime).format('YYYY-MM-dd HH:mm') : ''; + var startTimeFormatted = brew.startTime ? moment(brew.startTime).format('YYYY-MM-DD HH:mm') : ''; // No brew in progress if(!brew.name && !brew.phases.length) {