-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix issue due date edit toggle bug #23723
Conversation
Codecov Report
@@ Coverage Diff @@
## main #23723 +/- ##
===========================================
- Coverage 47.14% 0 -47.15%
===========================================
Files 1149 0 -1149
Lines 151446 0 -151446
===========================================
- Hits 71397 0 -71397
+ Misses 71611 0 -71611
+ Partials 8438 0 -8438 see 1149 files with indirect coverage changes Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
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.
* upstream/main: Fix issue due date edit toggle bug (go-gitea#23723) Fix profile page email display, respect settings (go-gitea#23747) Update Gitea version in docs (go-gitea#23755) Fix SVG close tag, improve commit graph page UI alignment (go-gitea#23751) Remove incorrect HTML self close tag (go-gitea#23748) Refactor repo commit list (go-gitea#23690) Fix tags view (go-gitea#23243) Add commit info in action page (go-gitea#23210) Use GitHub Actions compatible globbing for `branches`, `tag`, `path` filter (go-gitea#22804)
Backport #23723 by @wxiaoguang 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. Need to backport. Co-authored-by: wxiaoguang <[email protected]>
Might need https://github.com/wikimedia/eslint-plugin-no-jquery/blob/master/docs/rules/no-fade.md |
Use
toggleElem
instead of jQuery'sfadeToggle
, which can't be caught by eslint jquery plugin.Hopefully this could be the last bug for the jQuery show/hide refactoring.
Need to backport.