From f3f0764bf8bbe72e86a4406eb003571ac3f50797 Mon Sep 17 00:00:00 2001 From: TobiasNx <61879957+TobiasNx@users.noreply.github.com> Date: Mon, 2 Sep 2024 18:31:14 +0200 Subject: [PATCH] Reuse nwbib fix for #1951 and #1829 https://github.com/hbz/nwbib/issues/636 --- web/app/views/tags/result_doc.scala.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/app/views/tags/result_doc.scala.html b/web/app/views/tags/result_doc.scala.html index 192f18c65..6efe6c325 100644 --- a/web/app/views/tags/result_doc.scala.html +++ b/web/app/views/tags/result_doc.scala.html @@ -188,8 +188,8 @@ @for(pub <- sortedPublications((doc\"publication").asOpt[Seq[JsValue]].getOrElse(Seq()))){ @publication(pub) } @result_field("Auflage", "edition", doc, TableRow.VALUES) - @result_field("ISBN", "isbn", doc, TableRow.VALUES) - @result_field("ISSN", "issn", doc, TableRow.VALUES) + @result_field("ISBN", "isbn", doc, TableRow.VALUES, node = Option(doc)) + @result_field("ISSN", "issn", doc, TableRow.VALUES, node = Option(doc)) @withPrefixedLink("DOI", "https://dx.doi.org/", doc \ "doi") @withPrefixedLink("URN", "https://nbn-resolving.org/", doc \ "urn") @result_field("Umfang", "extent", doc, TableRow.VALUES)