Skip to content

Commit

Permalink
this had not removed the ws anyway
Browse files Browse the repository at this point in the history
  • Loading branch information
maelle committed Feb 28, 2025
1 parent e8b666b commit 32acfff
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions R/build-home-authors.R
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,8 @@ author_list <- function(x, authors_info = NULL, comment = FALSE, pkg = ".") {
name = name,
roles = roles,
comment = linkify(x$comment),
# can't have both ORCID and ROR
uniqueid = orcid_link(orcid) %||% ror_link(ror)
orcid = orcid_link(orcid),
ror = ror_link(ror)
)
}

Expand Down
2 changes: 1 addition & 1 deletion inst/BS5/templates/content-authors.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ <h1>{{{pagetitle}}}</h1>
<ul class="list-unstyled">
{{#authors}}
<li>
<p><strong>{{{name}}}</strong>. {{{roles}}}. {{{uniqueid}}}
<p><strong>{{{name}}}</strong>. {{{roles}}}. {{{orcid}}}{{{ror}}}
{{#comment}}<br /><small>{{{.}}}</small>{{/comment}}</p>
</li>
{{/authors}}
Expand Down
2 changes: 1 addition & 1 deletion inst/BS5/templates/content-citation-authors.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ <h2>{{#translate}}{{authors}}{{/translate}}</h2>
<ul class="list-unstyled">
{{#authors}}
<li>
<p><strong>{{{name}}}</strong>. {{{roles}}}. {{{uniqueid}}}
<p><strong>{{{name}}}</strong>. {{{roles}}}. {{{orcid}}}{{{ror}}}
{{#comment}}<br /><small>{{{.}}}</small>{{/comment}}</p>
</li>
{{/authors}}
Expand Down

0 comments on commit 32acfff

Please sign in to comment.