File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -546,10 +546,10 @@ public class Character {
546
546
< a href = "https://developer.github.com/early-access/graphql" target = "_blank" >
547
547
< img src = "/users/logos/github.png" title = "GitHub" className = "round" />
548
548
</ a >
549
- { /** /}
550
549
< a href = "https://www.pinterest.com/" target = "_blank" >
551
550
< img src = "/users/logos/pinterest.png" title = "Pinterest" className = "round" />
552
551
</ a >
552
+ { /** /}
553
553
<a href="https://www.airbnb.com/" target="_blank">
554
554
<img src="/users/logos/airbnb.png" title="Airbnb" className="round" />
555
555
</a>
Original file line number Diff line number Diff line change @@ -38,6 +38,12 @@ var logos = [
38
38
img : 'coursera.png' ,
39
39
link : 'https://www.coursera.org/'
40
40
} ,
41
+ {
42
+ name : 'Pinterest' ,
43
+ img : 'pinterest.png' ,
44
+ isRound : true ,
45
+ link : 'https://www.pinterest.com/'
46
+ } ,
41
47
{
42
48
name : 'Hudl' ,
43
49
img : 'hudl.png' ,
@@ -135,7 +141,7 @@ module.exports = ({ page }) =>
135
141
{ logos . sort ( ( a , b ) =>
136
142
a . name . toLowerCase ( ) < b . name . toLowerCase ( ) ? - 1 : 1
137
143
) . map ( logo =>
138
- < a href = { logo . link } target = "_blank" >
144
+ < a href = { logo . link } target = "_blank" key = { logo . name } >
139
145
< img src = { '/users/logos/' + logo . img } title = { logo . name } className = { logo . isRound ? 'round' : null } />
140
146
</ a >
141
147
) }
You can’t perform that action at this time.
0 commit comments