diff options
| author | Adam Harvey <adam@ahprojects.com> | 2019-05-23 18:37:06 +0200 |
|---|---|---|
| committer | Adam Harvey <adam@ahprojects.com> | 2019-05-23 18:37:06 +0200 |
| commit | b2b2c7d7816baa7d6de36c1de3576a31aa92a209 (patch) | |
| tree | 9105ef39a3bfcd78e9cf4b8c183ee21e7149bf66 /scraper/client/paper/citationList.component.js | |
| parent | 4559cf6cccfb6f6d8b8e59e95984044fdf5a5610 (diff) | |
| parent | 84b286e1bd85feba12174a2a480d2be404e7b9c5 (diff) | |
merge
Diffstat (limited to 'scraper/client/paper/citationList.component.js')
| -rw-r--r-- | scraper/client/paper/citationList.component.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/scraper/client/paper/citationList.component.js b/scraper/client/paper/citationList.component.js index 002c0dcb..2241d256 100644 --- a/scraper/client/paper/citationList.component.js +++ b/scraper/client/paper/citationList.component.js @@ -76,6 +76,10 @@ class CitationList extends Component { ? <span className='unverified'>{"doesn't use dataset"}</span> : <span className='not_enough_info'>{"not enough information"}</span> } + cite.reference = verification.reference + if (verification.notes) { + cite.notes = verification.notes + } } else { cite.verified = { @@ -89,7 +93,7 @@ class CitationList extends Component { summary object={cite} tag={cite.title} - order={['id', 'pdf', 's2', 'year', 'addresses', 'verified']} + order={['id', 'pdf', 's2', 'year', 'addresses', 'verified', 'reference', 'notes']} /> </li> ) |
