demilestone should not include milestone (#32923)

Fix #32887
This commit is contained in:
Lunny Xiao 2024-12-24 21:52:46 -08:00 committed by GitHub
parent 1a7591d7f9
commit f44712f22b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 12 additions and 0 deletions

View file

@ -59,6 +59,10 @@ func changeMilestoneAssign(ctx context.Context, doer *user_model.User, issue *is
}
}
if issue.MilestoneID == 0 {
issue.Milestone = nil
}
return nil
}