Skip to content
This repository has been archived by the owner on Jun 13, 2022. It is now read-only.

Commit

Permalink
fix(core): fix displaying the date of incidents when using the cli #184
Browse files Browse the repository at this point in the history
… (#208)
  • Loading branch information
Peter Borsa authored and juliomrqz committed May 10, 2019
1 parent c31c107 commit 6e7d26e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/@statusfy/core/lib/utils/functions.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const getIncidentsFromProject = async contentDir => {
path: f
},
name: `${fileName} > ${chalk.yellow(data.title)} (${chalk.green(
data.date.toUTCString()
new Date(data.date).toUTCString()
)})`
});
}
Expand Down

0 comments on commit 6e7d26e

Please sign in to comment.