aboutsummaryrefslogtreecommitdiffstats
path: root/web_src/js/features/repo-projects.ts
Commit message (Collapse)AuthorAgeFilesLines
* Fix project column edit (#34890)wxiaoguang2025-06-281-1/+2
| | | Fix #34888
* Add fullscreen mode as a more efficient operation way to view projects (#34081)Kerwin Bryant2025-04-231-3/+21
| | | | | | | Maybe fix #33482, maybe fix #34015 --------- Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
* Refactor repo-projects.ts (#32892)silverwind2024-12-191-119/+79
| | | | | | | | | | - Remove jQuery - Add types to all functions - Tested all modified functionality --------- Co-authored-by: Giteabot <teabot@gitea.io> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
* Fix a number of typescript errors (#32773)silverwind2024-12-111-8/+8
| | | | | | | Fixes 96 typescript errors. Behaviour changes are commented below. --------- Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
* Add types to various low-level functions (#31781)silverwind2024-08-101-3/+3
| | | | | | | | Adds types to various low-level modules. All changes are type-only, no runtime changes. `tsc` now reports 38 less errors. One problem was that `@types/sortablejs` does not accept promise return in its functions which triggered the linter, so I disabled the rules on those line.
* Convert frontend code to typescript (#31559)silverwind2024-07-071-0/+188
None of the frontend js/ts files was touched besides these two commands (edit: no longer true, I touched one file in https://github.com/go-gitea/gitea/pull/31559/commits/61105d0618e285d97e95044bfb64415f364a4526 because of a deprecation that was not showing before the rename). `tsc` currently reports 778 errors, so I have disabled it in CI as planned. Everything appears to work fine.