mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-10 20:59:31 +01:00
Fixes regression of issue edit not working
This commit is contained in:
parent
9c82789664
commit
8c31b78630
1 changed files with 2 additions and 2 deletions
|
@ -477,8 +477,8 @@ async function onEditContent(event) {
|
|||
e.preventDefault();
|
||||
saveAndRefresh(dz);
|
||||
});
|
||||
editContentZone.on('ce-quick-submit', () => {
|
||||
editContentZone.find('.save.button').trigger('click');
|
||||
editContentZone.addEventListener('ce-quick-submit', () => {
|
||||
editContentZone.querySelector('.save.button').dispatchEvent(new Event('click'));
|
||||
});
|
||||
} else {
|
||||
comboMarkdownEditor = getComboMarkdownEditor(editContentZone.querySelector('.combo-markdown-editor'));
|
||||
|
|
Loading…
Reference in a new issue