Merge pull request #2667 from jryans/trim-changelog

Only show the first line of each commit in changelog dialog
This commit is contained in:
J. Ryan Stinnett 2019-02-20 13:05:14 +00:00 committed by GitHub
commit a29a8185fc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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>
);