From 8de2992ffba8cc627757ecea1e002a55581113d2 Mon Sep 17 00:00:00 2001 From: wxiaoguang Date: Sat, 27 Apr 2024 22:32:00 +0800 Subject: Make Ctrl+Enter work for issue/comment edit (#30720) Fix #30710 --- web_src/js/features/comp/QuickSubmit.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'web_src/js/features/comp/QuickSubmit.js') diff --git a/web_src/js/features/comp/QuickSubmit.js b/web_src/js/features/comp/QuickSubmit.js index 477b3b9e2a..6bd5f6644d 100644 --- a/web_src/js/features/comp/QuickSubmit.js +++ b/web_src/js/features/comp/QuickSubmit.js @@ -1,5 +1,5 @@ export function handleGlobalEnterQuickSubmit(target) { - const form = target.closest('form'); + let form = target.closest('form'); if (form) { if (!form.checkValidity()) { form.reportValidity(); @@ -9,5 +9,10 @@ export function handleGlobalEnterQuickSubmit(target) { // here use the event to trigger the submit event (instead of calling `submit()` method directly) // otherwise the `areYouSure` handler won't be executed, then there will be an annoying "confirm to leave" dialog form.dispatchEvent(new SubmitEvent('submit', {bubbles: true, cancelable: true})); + return; + } + form = target.closest('.ui.form'); + if (form) { + form.querySelector('.ui.primary.button')?.click(); } } -- cgit v1.2.3