0
0
Fork 0

Replace more font-awesome icons in app/helpers (#30962)

This commit is contained in:
Matt Jankowski 2024-08-07 18:53:15 -04:00 committed by GitHub
parent e4092cc73a
commit 52a626f39b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 20 additions and 18 deletions

View file

@ -60,13 +60,13 @@ module StatusesHelper
def fa_visibility_icon(status)
case status.visibility
when 'public'
fa_icon 'globe fw'
material_symbol 'globe'
when 'unlisted'
fa_icon 'unlock fw'
material_symbol 'lock_open'
when 'private'
fa_icon 'lock fw'
material_symbol 'lock'
when 'direct'
fa_icon 'at fw'
material_symbol 'alternate_email'
end
end