mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-08 18:04:14 +01:00
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
This commit is contained in:
parent
5789e60316
commit
1752a976e1
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue