about summary refs log tree commit diff
path: root/app/views/admin/custom_emojis
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2022-03-14 05:45:22 +0100
committerGitHub <noreply@github.com>2022-03-14 05:45:22 +0100
commit91616004fe52805f9602aa444549486e4ef17839 (patch)
tree39377cc243826ed8ddcf04aef98099d127d1b0b2 /app/views/admin/custom_emojis
parent5db1f377ea2735778d2d3004d2af268fdcafff4a (diff)
Fix not being able to upload GIF emojis in admin UI (#17759)
Diffstat (limited to 'app/views/admin/custom_emojis')
-rw-r--r--app/views/admin/custom_emojis/new.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/admin/custom_emojis/new.html.haml b/app/views/admin/custom_emojis/new.html.haml
index e15a07cb8..95996dec8 100644
--- a/app/views/admin/custom_emojis/new.html.haml
+++ b/app/views/admin/custom_emojis/new.html.haml
@@ -7,7 +7,7 @@
   .fields-group
     = f.input :shortcode, wrapper: :with_label, label: t('admin.custom_emojis.shortcode'), hint: t('admin.custom_emojis.shortcode_hint')
   .fields-group
-    = f.input :image, wrapper: :with_label, input_html: { accept: 'image/png' }, hint: t('admin.custom_emojis.image_hint')
+    = f.input :image, wrapper: :with_label, input_html: { accept: CustomEmoji::IMAGE_MIME_TYPES.join(' ') }, hint: t('admin.custom_emojis.image_hint', size: number_to_human_size(CustomEmoji::LIMIT))
 
   .actions
     = f.button :button, t('admin.custom_emojis.upload'), type: :submit