Skip to content
This repository has been archived by the owner on Dec 11, 2019. It is now read-only.

Commit

Permalink
fix verified publisher icon in Contribution Statement PDF
Browse files Browse the repository at this point in the history
for #6039
  • Loading branch information
Willy Bruns authored and cezaraugusto committed Jan 9, 2017
1 parent f373450 commit f57a6ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/about/contributionStatement.js
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ class ContributionStatement extends ImmutableComponent {
<tr className='spacingRow' />
{
page.map(function (row, idx) {
let publisherSynopsis = this.synopsis[row.siteColumn] || {}
let publisherSynopsis = (this.synopsis.filter((entry) => { return entry.site === row[0] }) || [])[0] || {}

let verified = publisherSynopsis.verified
let site = row[0]
Expand Down

0 comments on commit f57a6ee

Please sign in to comment.