Browse Source

Fix nil error in admin_account_link_to helper (#8578)

Fix #8573
pull/4/head
Eugen Rochko 5 years ago
committed by GitHub
parent
commit
e926811724
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      app/helpers/admin/account_moderation_notes_helper.rb

+ 4
- 0
app/helpers/admin/account_moderation_notes_helper.rb View File

@ -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

Loading…
Cancel
Save