Fix the missing repo count in new team page and edit team page (#27743)

Follow #26942
Before:

![image](ffe3e914-c71c-493f-965b-369f27c70b4b)


![image](eaad4f07-b8ce-4564-b883-97938de5ed79)

After:


![image](353aeabe-caf4-4449-8330-d3a29f9bd326)


![image](baf59bb6-2c74-4a56-a28c-1519bc3d2594)
This commit is contained in:
853 2023-10-25 13:55:56 +08:00 committed by GitHub
parent 572f0963ed
commit e544a277fe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -276,6 +276,10 @@ func NewTeam(ctx *context.Context) {
ctx.Data["PageIsOrgTeamsNew"] = true
ctx.Data["Team"] = &org_model.Team{}
ctx.Data["Units"] = unit_model.Units
if err := shared_user.LoadHeaderCount(ctx); err != nil {
ctx.ServerError("LoadHeaderCount", err)
return
}
ctx.HTML(http.StatusOK, tplTeamNew)
}
@ -463,6 +467,10 @@ func EditTeam(ctx *context.Context) {
ctx.ServerError("LoadUnits", err)
return
}
if err := shared_user.LoadHeaderCount(ctx); err != nil {
ctx.ServerError("LoadHeaderCount", err)
return
}
ctx.Data["Team"] = ctx.Org.Team
ctx.Data["Units"] = unit_model.Units
ctx.HTML(http.StatusOK, tplTeamNew)