Skip to content

Commit d8ea763

Browse files
authored
Merge pull request #2565 from appirio-tech/hotfix/fixed_creation_date_on_left_panel
[DEV]Hotfix/fixed creation date on left panel
2 parents 69e9a53 + 59d9dd7 commit d8ea763

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/ProjectInfo/ProjectInfo.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ class ProjectInfo extends Component {
6868
</div>
6969
}
7070
<div className="project-status-info">
71-
<div className="project-status-time">Created {moment(project.updatedAt).format('MMM DD, YYYY')}</div>
71+
<div className="project-status-time">Created {moment(project.createdAt).format('MMM DD, YYYY')}</div>
7272
{!!code && <div className="project-status-ref">{code}</div>}
7373
</div>
7474
</div>

0 commit comments

Comments
 (0)