From 852947e428033d51171e009eec9147b38e5c8415 Mon Sep 17 00:00:00 2001 From: Fabian Steeg Date: Thu, 15 Jul 2021 15:46:10 +0200 Subject: [PATCH] Open publications in new tab (#445) --- gatsby/lobid/src/components/publications.html.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gatsby/lobid/src/components/publications.html.js b/gatsby/lobid/src/components/publications.html.js index e0dd92e..2d4ee59 100644 --- a/gatsby/lobid/src/components/publications.html.js +++ b/gatsby/lobid/src/components/publications.html.js @@ -17,7 +17,7 @@ export default class Publications extends React.Component { {this.props.pubs.map(publication => {publication.datePublished} - {publication.name.de || publication.name.en || publication.id} + {publication.name.de || publication.name.en || publication.id} {publication.about && publication.about.map(a =>

 {a.id.slice(a.id.lastIndexOf("/")+1, a.id.lastIndexOf("."))}

)}