mirror of
https://github.com/go-gitea/gitea
synced 2024-11-01 17:23:36 +01:00
Fixing Dropzone should accept all files when config is "*/*".
This commit is contained in:
parent
b2fb7e3fd2
commit
880849a283
@ -735,7 +735,7 @@ $(document).ready(function () {
|
||||
headers: {"X-Csrf-Token": csrf},
|
||||
maxFiles: $dropz.data('max-file'),
|
||||
maxFilesize: $dropz.data('max-size'),
|
||||
acceptedFiles: $dropz.data('accepts'),
|
||||
acceptedFiles: ($dropz.data('accepts') === '*/*') ? null : $dropz.data('accepts'),
|
||||
addRemoveLinks: true,
|
||||
dictDefaultMessage: $dropz.data('default-message'),
|
||||
dictInvalidFileType: $dropz.data('invalid-input-type'),
|
||||
|
Loading…
Reference in New Issue
Block a user