diff options
author | Takeshi Umeda <noel.yoshiba@gmail.com> | 2022-10-21 20:22:02 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-21 13:22:02 +0200 |
commit | 7777524145884a311439dd3fc3b55f8e0a247e34 (patch) | |
tree | fe89d022efc95a6a5f03c680d40a88eda4bc1035 /app/views | |
parent | 6faa51edc77073c73873daf1ca43a91366543b38 (diff) |
Fix featured tag display name in setting (#19404)
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/settings/featured_tags/index.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/settings/featured_tags/index.html.haml b/app/views/settings/featured_tags/index.html.haml index 5d87e2862..595094fc7 100644 --- a/app/views/settings/featured_tags/index.html.haml +++ b/app/views/settings/featured_tags/index.html.haml @@ -21,7 +21,7 @@ %div %h4 = fa_icon 'hashtag' - = featured_tag.name + = featured_tag.display_name %small - if featured_tag.last_status_at.nil? = t('accounts.nothing_here') |