From 6c9e196e5457b30716f3939f258dca07567a2637 Mon Sep 17 00:00:00 2001 From: Nanguan Lin <70063547+lng2020@users.noreply.github.com> Date: Fri, 10 Nov 2023 19:43:18 +0800 Subject: [PATCH] Show error toast when file size exceeds the limits (#27985) As title. Before that, there was no alert at all. After: ![error_toast](https://github.com/go-gitea/gitea/assets/70063547/c54ffeed-76f8-4c3a-b5dc-b9b3e0f8fc76) --- web_src/js/features/common-global.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/web_src/js/features/common-global.js b/web_src/js/features/common-global.js index c00c06c0c..c2e011184 100644 --- a/web_src/js/features/common-global.js +++ b/web_src/js/features/common-global.js @@ -247,6 +247,10 @@ export function initGlobalDropzone() { }); } }); + this.on('error', function (file, message) { + showErrorToast(message); + this.removeFile(file); + }); }, }); }