mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
Merge pull request #2056 from jansol/develop
Improve readability of the changelog dialog
This commit is contained in:
commit
e069d808f8
@ -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>
|
||||
)
|
||||
});
|
||||
|
@ -18,3 +18,7 @@ limitations under the License.
|
||||
max-height: 300px;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.mx_ChangelogDialog_li {
|
||||
padding: 0.2em;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user