From 59d9dd73a0c2727aad8f4164b0f9a9a8a05a3a8b Mon Sep 17 00:00:00 2001 From: RishiRaj Date: Mon, 1 Oct 2018 19:34:01 +0530 Subject: [PATCH] Corrected:Left panel on dashboard is showing updated date instead of creation date --- src/components/ProjectInfo/ProjectInfo.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ProjectInfo/ProjectInfo.jsx b/src/components/ProjectInfo/ProjectInfo.jsx index c7cfa47f4..1dc3da182 100644 --- a/src/components/ProjectInfo/ProjectInfo.jsx +++ b/src/components/ProjectInfo/ProjectInfo.jsx @@ -68,7 +68,7 @@ class ProjectInfo extends Component { }
-
Created {moment(project.updatedAt).format('MMM DD, YYYY')}
+
Created {moment(project.createdAt).format('MMM DD, YYYY')}
{!!code &&
{code}
}