about summary refs log tree commit diff
path: root/app/views/admin/custom_emojis
diff options
context:
space:
mode:
authorClaire <claire.github-309c@sitedethib.com>2022-03-14 16:44:35 +0100
committerClaire <claire.github-309c@sitedethib.com>2022-03-14 16:44:35 +0100
commita945182b568d7aebd6b181b60f58b1e1880746c7 (patch)
tree6e84e0708e5e32fdcbf7c99e136882c1f809e252 /app/views/admin/custom_emojis
parent988f5bf0266483659b03f1b0926d0b9ff9e85a8f (diff)
parent91616004fe52805f9602aa444549486e4ef17839 (diff)
Merge branch 'main' into glitch-soc/merge-upstream
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