Skip to content
Snippets Groups Projects
Unverified Commit 155ec185 authored by Matt Jankowski's avatar Matt Jankowski Committed by GitHub
Browse files

Remove unused `picture_hint` helper method (#25485)

parent a0d7ae25
No related branches found
No related tags found
No related merge requests found
......@@ -24,13 +24,4 @@ module SettingsHelper
safe_join([image_tag(account.avatar.url, width: 15, height: 15, alt: display_name(account), class: 'avatar'), content_tag(:span, account.acct, class: 'username')], ' ')
end
end
def picture_hint(hint, picture)
if picture.original_filename.nil?
hint
else
link = link_to t('generic.delete'), settings_profile_picture_path(picture.name.to_s), data: { method: :delete }
safe_join([hint, link], '<br/>'.html_safe)
end
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment