Commit 0492964b3bfa7c8b08040b23d72013365bfd8e22
Exists in
master
and in
4 other branches
Merge pull request #5410 from Popl7/fix_max_size_shown_avatar_upload_profile
set maximum filesize for avatar on profile page correct
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
app/views/profiles/show.html.haml
... | ... | @@ -63,7 +63,7 @@ |
63 | 63 | |
64 | 64 | %span.file_name.js-avatar-filename File name... |
65 | 65 | = f.file_field :avatar, class: "js-user-avatar-input hide" |
66 | - %span.help-block The maximum file size allowed is 200KB. | |
66 | + %span.help-block The maximum file size allowed is 100KB. | |
67 | 67 | |
68 | 68 | .form-actions |
69 | 69 | = f.submit 'Save changes', class: "btn btn-save" | ... | ... |