Skip to content

Commit

Permalink
Add missing space in aboutness display
Browse files Browse the repository at this point in the history
  • Loading branch information
abartov committed Sep 28, 2024
1 parent fe65c7c commit 3a3837a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/helpers/aboutnesses_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ def aboutness_html(ab, edit)
case ab.aboutable_type
when 'Authority'
html += link_to(ab.aboutable.try(:name), authority_path(ab.aboutable.id))
html += "(#{Authority.model_name.human})"
html += " (#{Authority.model_name.human})"
when 'Work'
html += link_to(ab.aboutable.try(:title), work_show_path(id: ab.aboutable_id))
html += ' / '
Expand Down

0 comments on commit 3a3837a

Please sign in to comment.