Skip to content

Commit

Permalink
Fix display of the commits in the UI
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Jan 22, 2019
1 parent 7f98bef commit 0d335dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/ui.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const printCommitLog = async repoUrl => {
const commitMessage = util.linkifyIssues(repoUrl, commit.message);
const commitId = util.linkifyCommit(repoUrl, commit.id);
return `- ${commitMessage} ${commitId}`;
});
}).join('\n');

const releaseNotes = nextTag => commits.map(commit =>
`- ${commit.message} ${commit.id}`
Expand Down

0 comments on commit 0d335dd

Please sign in to comment.