mirror of
https://github.com/go-gitea/gitea.git
synced 2024-10-31 08:37:35 -04:00
Fix issue due date edit toggle bug (#23723)
Use `toggleElem` instead of jQuery's `fadeToggle`, which can't be caught by eslint jquery plugin. Hopefully this could be the last bug for the jQuery show/hide refactoring.
This commit is contained in:
parent
6706ac2a0f
commit
8df1b4bd69
@ -78,7 +78,7 @@ function updateDeadline(deadlineString) {
|
|||||||
|
|
||||||
export function initRepoIssueDue() {
|
export function initRepoIssueDue() {
|
||||||
$(document).on('click', '.issue-due-edit', () => {
|
$(document).on('click', '.issue-due-edit', () => {
|
||||||
$('#deadlineForm').fadeToggle(150);
|
toggleElem('#deadlineForm');
|
||||||
});
|
});
|
||||||
$(document).on('click', '.issue-due-remove', () => {
|
$(document).on('click', '.issue-due-remove', () => {
|
||||||
updateDeadline('');
|
updateDeadline('');
|
||||||
|
Loading…
Reference in New Issue
Block a user