diff options
author | wxiaoguang <wxiaoguang@gmail.com> | 2024-11-11 04:07:54 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-11 04:07:54 +0800 |
commit | a928739456b78072136a1a264a68758571238aac (patch) | |
tree | 6031dfd4eb110262338e3b2636dee445cac63fa7 /services | |
parent | 58c634b8549fb279aec72cecd6a48511803db067 (diff) | |
download | gitea-a928739456b78072136a1a264a68758571238aac.tar.gz gitea-a928739456b78072136a1a264a68758571238aac.zip |
Refactor sidebar assignee&milestone&project selectors (#32465)
Follow #32460
Now the code could be much clearer than before and easier to maintain. A
lot of legacy code is removed.
Manually tested.
This PR is large enough, that fine tunes could be deferred to the future if
there is no bug found or design problem.
Screenshots:
<details>
![image](https://github.com/user-attachments/assets/35f4ab7b-1bc0-4bad-a73c-a4569328303c)
</details>
Diffstat (limited to 'services')
-rw-r--r-- | services/forms/repo_form.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/services/forms/repo_form.go b/services/forms/repo_form.go index 83f2dd6caa..d27bbca894 100644 --- a/services/forms/repo_form.go +++ b/services/forms/repo_form.go @@ -451,7 +451,6 @@ type CreateIssueForm struct { Ref string `form:"ref"` MilestoneID int64 ProjectID int64 - AssigneeID int64 Content string Files []string AllowMaintainerEdit bool |