about summary refs log tree commit diff
path: root/app/views/settings/featured_tags/index.html.haml
diff options
context:
space:
mode:
authorabcang <abcang1015@gmail.com>2020-09-08 00:47:41 +0900
committerGitHub <noreply@github.com>2020-09-07 17:47:41 +0200
commite79d719e92e120ba3dd6ec2d8521f7aaa9482634 (patch)
tree08ef699ffb616dea36fcfdf87a3ca68fc5aa9aec /app/views/settings/featured_tags/index.html.haml
parente8bc187845b78e4a94894c69ecf930a524ad2056 (diff)
Changed tag most_used to recently_used (#14760)
Diffstat (limited to 'app/views/settings/featured_tags/index.html.haml')
-rw-r--r--app/views/settings/featured_tags/index.html.haml2
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 6734d027c..297379893 100644
--- a/app/views/settings/featured_tags/index.html.haml
+++ b/app/views/settings/featured_tags/index.html.haml
@@ -9,7 +9,7 @@
   = render 'shared/error_messages', object: @featured_tag
 
   .fields-group
-    = f.input :name, wrapper: :with_block_label, hint: safe_join([t('simple_form.hints.featured_tag.name'), safe_join(@most_used_tags.map { |tag| link_to("##{tag.name}", settings_featured_tags_path(featured_tag: { name: tag.name }), method: :post) }, ', ')], ' ')
+    = f.input :name, wrapper: :with_block_label, hint: safe_join([t('simple_form.hints.featured_tag.name'), safe_join(@recently_used_tags.map { |tag| link_to("##{tag.name}", settings_featured_tags_path(featured_tag: { name: tag.name }), method: :post) }, ', ')], ' ')
 
   .actions
     = f.button :button, t('featured_tags.add_new'), type: :submit