mirror of
https://github.com/mue/mue.git
synced 2026-07-27 10:41:08 +02:00
WIP translations update
This commit is contained in:
@@ -4,6 +4,8 @@ import Tooltip from '@material-ui/core/Tooltip';
|
||||
|
||||
import * as Constants from '../../../../modules/constants';
|
||||
|
||||
const other_contributors = require('../../../../modules/other_contributors.json');
|
||||
|
||||
export default class About extends React.PureComponent {
|
||||
constructor(...args) {
|
||||
super(...args);
|
||||
@@ -49,6 +51,11 @@ export default class About extends React.PureComponent {
|
||||
<a href={'https://github.com/' + item.login} target='_blank' rel='noopener noreferrer'><img draggable='false' className='abouticon' src={item.avatar_url + '&size=256'} alt={item.login}></img></a>
|
||||
</Tooltip>
|
||||
)}
|
||||
{other_contributors.map((item) => // for those who contributed without opening a pull request
|
||||
<Tooltip title={item.login} placement='top' key={item.login}>
|
||||
<a href={'https://github.com/' + item.login} target='_blank' rel='noopener noreferrer'><img draggable='false' className='abouticon' src={item.avatar_url + '&size=256'} alt={item.login}></img></a>
|
||||
</Tooltip>
|
||||
)}
|
||||
<h3>Supporters</h3>
|
||||
<p>to be implemented</p>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user