Skip to content

Commit

Permalink
Open publications in new tab (#445)
Browse files Browse the repository at this point in the history
  • Loading branch information
fsteeg committed Jul 15, 2021
1 parent 7e0870e commit 852947e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gatsby/lobid/src/components/publications.html.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export default class Publications extends React.Component {
{this.props.pubs.map(publication =>
<tr key={publication.id}>
<td><small>{publication.datePublished}</small></td>
<td><a href={publication.id}>{publication.name.de || publication.name.en || publication.id}</a></td>
<td><a target="_blank" rel="noopener noreferrer" href={publication.id}>{publication.name.de || publication.name.en || publication.id}</a></td>
<td>{publication.about && publication.about.map(a =>
<p key={a.id}><small><span className="glyphicon glyphicon-tag" aria-hidden="true"></span></small>&nbsp;<a href={a.id}>{a.id.slice(a.id.lastIndexOf("/")+1, a.id.lastIndexOf("."))}</a></p>
)}</td>
Expand Down

0 comments on commit 852947e

Please sign in to comment.