Skip to content

Commit

Permalink
add jpg to allowed file extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
goapunk committed Jul 18, 2024
1 parent 74d334c commit eb5384c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django_ckeditor_5/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class UploadFileForm(forms.Form):
getattr(
settings,
"CKEDITOR_5_UPLOAD_FILE_TYPES",
["jpeg", "png", "gif", "bmp", "webp", "tiff"],
["jpg", "jpeg", "png", "gif", "bmp", "webp", "tiff"],
),
),
],
Expand Down

0 comments on commit eb5384c

Please sign in to comment.