Skip to content

Commit

Permalink
Only show the first line of each commit in changelog dialog
Browse files Browse the repository at this point in the history
Multi-line commits aren't actually formatted correctly, and most likely the
first line is enough of a summary anyway, so this change trims to the first
line. The commits are linked, so you can click through if you want more detail.

Fixes element-hq/element-web#8285
  • Loading branch information
jryans committed Feb 20, 2019
1 parent d8c5163 commit d68b7c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/views/dialogs/ChangelogDialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export default class ChangelogDialog extends React.Component {
return (
<li key={commit.sha} className="mx_ChangelogDialog_li">
<a href={commit.html_url} target="_blank" rel="noopener">
{commit.commit.message}
{commit.commit.message.split('\n')[0]}
</a>
</li>
);
Expand Down

0 comments on commit d68b7c2

Please sign in to comment.