Skip to content

Commit 32acfff

Browse files
committed
this had not removed the ws anyway
1 parent e8b666b commit 32acfff

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

R/build-home-authors.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,8 +143,8 @@ author_list <- function(x, authors_info = NULL, comment = FALSE, pkg = ".") {
143143
name = name,
144144
roles = roles,
145145
comment = linkify(x$comment),
146-
# can't have both ORCID and ROR
147-
uniqueid = orcid_link(orcid) %||% ror_link(ror)
146+
orcid = orcid_link(orcid),
147+
ror = ror_link(ror)
148148
)
149149
}
150150

inst/BS5/templates/content-authors.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ <h1>{{{pagetitle}}}</h1>
1010
<ul class="list-unstyled">
1111
{{#authors}}
1212
<li>
13-
<p><strong>{{{name}}}</strong>. {{{roles}}}. {{{uniqueid}}}
13+
<p><strong>{{{name}}}</strong>. {{{roles}}}. {{{orcid}}}{{{ror}}}
1414
{{#comment}}<br /><small>{{{.}}}</small>{{/comment}}</p>
1515
</li>
1616
{{/authors}}

inst/BS5/templates/content-citation-authors.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ <h2>{{#translate}}{{authors}}{{/translate}}</h2>
1111
<ul class="list-unstyled">
1212
{{#authors}}
1313
<li>
14-
<p><strong>{{{name}}}</strong>. {{{roles}}}. {{{uniqueid}}}
14+
<p><strong>{{{name}}}</strong>. {{{roles}}}. {{{orcid}}}{{{ror}}}
1515
{{#comment}}<br /><small>{{{.}}}</small>{{/comment}}</p>
1616
</li>
1717
{{/authors}}

0 commit comments

Comments
 (0)