Merge branch 'develop' into wmwragg/one-to-one-chat
This commit is contained in:
commit
059f5198e5
9 changed files with 34 additions and 18 deletions
|
@ -50,9 +50,11 @@ export default class ChangelogDialog extends React.Component {
|
|||
return (
|
||||
<div key={repo}>
|
||||
<h2>{repo}</h2>
|
||||
<ul>
|
||||
{this.state[repo].map(commit =>
|
||||
<div key={commit.commit.url}><a href={commit.commit.url}>{commit.commit.message}</a></div>
|
||||
<li key={commit.commit.url} className="mx_ChangelogDialog_li"><a href={commit.commit.url}>{commit.commit.message}</a></li>
|
||||
)}
|
||||
</ul>
|
||||
</div>
|
||||
)
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue