0
Fork 0
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:
Juan Picado @jotadeveloper 2018-07-09 15:53:48 +02:00 committed by GitHub
commit 50f3634bab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 4 deletions

View file

@ -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

View file

@ -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>
);

View file

@ -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>
);
});