From 1752a976e17aab3eb65a9dfccc8109e377ab0aee Mon Sep 17 00:00:00 2001 From: silverwind Date: Sat, 23 May 2020 03:29:57 +0200 Subject: [PATCH] Fix Enter not working in SimpleMDE (#11564) * Fix Enter not working in SimpleMDE This condition was wrongly inverted, leading to all enter keys being blocked. Fixes: https://github.com/go-gitea/gitea/issues/11559 * fix it for absent tribute too --- web_src/js/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web_src/js/index.js b/web_src/js/index.js index 84e08c1dd3..58cbd42933 100644 --- a/web_src/js/index.js +++ b/web_src/js/index.js @@ -1497,7 +1497,7 @@ function setCommentSimpleMDE($editArea) { simplemde.codemirror.setOption('extraKeys', { Enter: () => { const tributeContainer = document.querySelector('.tribute-container'); - if (tributeContainer && tributeContainer.style.display !== 'none') { + if (!tributeContainer || tributeContainer.style.display === 'none') { return CodeMirror.Pass; } },