Skip to content
Snippets Groups Projects
Unverified Commit e9268117 authored by Eugen Rochko's avatar Eugen Rochko Committed by GitHub
Browse files

Fix nil error in admin_account_link_to helper (#8578)

Fix #8573
parent 447d7339
Branches
No related tags found
No related merge requests found
......@@ -2,6 +2,8 @@
module Admin::AccountModerationNotesHelper
def admin_account_link_to(account)
return if account.nil?
link_to admin_account_path(account.id), class: name_tag_classes(account) do
safe_join([
image_tag(account.avatar.url, width: 15, height: 15, alt: display_name(account), class: 'avatar'),
......@@ -11,6 +13,8 @@ module Admin::AccountModerationNotesHelper
end
def admin_account_inline_link_to(account)
return if account.nil?
link_to admin_account_path(account.id), class: name_tag_classes(account, true) do
content_tag(:span, account.acct, class: 'username')
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment