Improve readability of the changelog dialog
							parent
							
								
									7a89328ccb
								
							
						
					
					
						commit
						e85674711c
					
				|  | @ -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
	
	 Jan Solanti
						Jan Solanti