mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-16 21:56:25 -05:00
Merge branch 'master' into refactor-config
This commit is contained in:
commit
50f3634bab
3 changed files with 5 additions and 4 deletions
|
@ -121,6 +121,7 @@ modern verdaccio API and using the prefix as *verdaccio-xx-name*.
|
|||
* [verdaccio-active-directory](https://github.com/nowhammies/verdaccio-activedirectory): Active Directory authentication plugin for verdaccio
|
||||
* [verdaccio-gitlab](https://github.com/bufferoverflow/verdaccio-gitlab): use GitLab Personal Access Token to authenticate
|
||||
* [verdaccio-htpasswd](https://github.com/verdaccio/verdaccio-htpasswd): Auth based on htpasswd file plugin (built-in) for verdaccio
|
||||
* [verdaccio-github-oauth](https://github.com/aroundus-inc/verdaccio-github-oauth): Github oauth authentication plugin for verdaccio.
|
||||
|
||||
### Middleware Plugins
|
||||
|
||||
|
|
|
@ -184,9 +184,9 @@ class Index extends React.Component {
|
|||
.filter(user => {
|
||||
return user.pinned;
|
||||
})
|
||||
.map(user => {
|
||||
.map((user, i) => {
|
||||
return (
|
||||
<a href={user.infoLink}>
|
||||
<a href={user.infoLink} key={i} target="_blank" rel="noopener">
|
||||
<img src={user.image} alt={user.caption} title={user.caption} />
|
||||
</a>
|
||||
);
|
||||
|
|
|
@ -17,8 +17,8 @@ class Users extends React.Component {
|
|||
render() {
|
||||
const showcase = siteConfig.users.map((user, i) => {
|
||||
return (
|
||||
<a href={user.infoLink} key={i}>
|
||||
<img src={user.image} title={user.caption} />
|
||||
<a href={user.infoLink} key={i} target="_blank" rel="noopener">
|
||||
<img src={user.image} alt={user.caption} title={user.caption} />
|
||||
</a>
|
||||
);
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue