mirror of
https://github.com/element-hq/element-web
synced 2024-11-27 19:56:47 +03:00
Merge pull request #2667 from jryans/trim-changelog
Only show the first line of each commit in changelog dialog
This commit is contained in:
commit
a29a8185fc
1 changed files with 1 additions and 1 deletions
|
@ -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>
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue