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 bsclifton committed Jan 26, 2017
1 parent c5228c5 commit a89a550
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 a89a550

Please sign in to comment.