Skip to content
Snippets Groups Projects
Unverified Commit e243092a authored by Claire's avatar Claire Committed by GitHub
Browse files

Add DM icon back on HTML view of DMs (#16086)

Fix regression from #16052
parent 0b36e341
No related branches found
No related tags found
No related merge requests found
......@@ -91,6 +91,8 @@ module ApplicationHelper
fa_icon('unlock', title: I18n.t('statuses.visibilities.unlisted'))
elsif status.private_visibility? || status.limited_visibility?
fa_icon('lock', title: I18n.t('statuses.visibilities.private'))
elsif status.direct_visibility?
fa_icon('envelope', title: I18n.t('statuses.visibilities.direct'))
end
end
......
......@@ -1260,6 +1260,7 @@ en:
sign_in_to_participate: Sign in to participate in the conversation
title: '%{name}: "%{quote}"'
visibilities:
direct: Direct
private: Followers-only
private_long: Only show to followers
public: Public
......
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