Skip to content

Commit

Permalink
Clarify separation between authors on homepage recents
Browse files Browse the repository at this point in the history
**BEFORE**
```
Abram, Ross, Borella, Margherita, De Nardi,
Mariacristina, McGee, Rory, Russo, Nicolò
```

**AFTER**
```
Abram, Ross / Borella, Margherita / De Nardi,
Mariacristina / McGee, Rory / Russo, Nicolò
```
  • Loading branch information
mark-dce committed Oct 16, 2024
1 parent 8b8854f commit 363ba7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/views/hyrax/homepage/_recent_document.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<span class="sr-only">Title</span><%= link_to truncate(recent_document.to_s, length: 100, separator: ' '), [main_app, recent_document] %>
</h4>
<p>
<span class="sr-only">Authors</span><%= link_to_facet_list(recent_document.alpha_creator, 'creator', '' ).html_safe %>
<span class="sr-only">Authors</span><%= link_to_facet_list(recent_document.alpha_creator, 'creator', '', ' / ' ).html_safe %>
</p>
<p>
<span class="sr-only">Series</span><%= link_to_facet_list(recent_document.series, 'series', '').html_safe %>
Expand Down

0 comments on commit 363ba7e

Please sign in to comment.