Skip to content

Commit

Permalink
Add name of user underneath logo on users page facebook#1040
Browse files Browse the repository at this point in the history
  • Loading branch information
Manjiri Tapaswi committed Oct 15, 2018
1 parent a28ac3b commit a1f281b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions v1/examples/basics/pages/en/users.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ class Users extends React.Component {
const showcase = siteConfig.users.map(user => (
<a href={user.infoLink} key={user.infoLink}>
<img src={user.image} alt={user.caption} title={user.caption} />
{user.caption}
</a>
));

Expand Down
1 change: 1 addition & 0 deletions v1/website/pages/en/users.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ class Users extends React.Component {
return (
<a href={user.infoLink} key={user.infoLink}>
<img src={user.image} alt={user.caption} title={user.caption} />
{user.caption}
</a>
);
}
Expand Down

0 comments on commit a1f281b

Please sign in to comment.