Changeset 3866 for sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/client/components/plugin/sections/developers/list.jsx
- Timestamp:
- 08/26/2016 09:54:15 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/client/components/plugin/sections/developers/list.jsx
r3865 r3866 1 1 import React from 'react'; 2 import values from 'lodash/values'; 2 3 3 4 export default React.createClass( { … … 10 11 11 12 return ( 12 <ul >13 { this.props.contributors.map( contributor=>14 <li >13 <ul className="plugin-developers"> 14 { values( this.props.contributors ).map( ( contributor, index ) => 15 <li key={ index }> 15 16 <img className="avatar avatar-32 photo" height="32" width="32" src={ contributor.avatar } /> 16 17 <a href={ contributor.profile }>{ contributor.display_name }</a>
Note: See TracChangeset
for help on using the changeset viewer.