mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 16:40:24 +08:00 
			
		
		
		
	Fix the missing repo count in new team page and edit team page (#27743)
Follow #26942 Before:   After:  
This commit is contained in:
		@@ -276,6 +276,10 @@ func NewTeam(ctx *context.Context) {
 | 
				
			|||||||
	ctx.Data["PageIsOrgTeamsNew"] = true
 | 
						ctx.Data["PageIsOrgTeamsNew"] = true
 | 
				
			||||||
	ctx.Data["Team"] = &org_model.Team{}
 | 
						ctx.Data["Team"] = &org_model.Team{}
 | 
				
			||||||
	ctx.Data["Units"] = unit_model.Units
 | 
						ctx.Data["Units"] = unit_model.Units
 | 
				
			||||||
 | 
						if err := shared_user.LoadHeaderCount(ctx); err != nil {
 | 
				
			||||||
 | 
							ctx.ServerError("LoadHeaderCount", err)
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
	ctx.HTML(http.StatusOK, tplTeamNew)
 | 
						ctx.HTML(http.StatusOK, tplTeamNew)
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -463,6 +467,10 @@ func EditTeam(ctx *context.Context) {
 | 
				
			|||||||
		ctx.ServerError("LoadUnits", err)
 | 
							ctx.ServerError("LoadUnits", err)
 | 
				
			||||||
		return
 | 
							return
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
						if err := shared_user.LoadHeaderCount(ctx); err != nil {
 | 
				
			||||||
 | 
							ctx.ServerError("LoadHeaderCount", err)
 | 
				
			||||||
 | 
							return
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
	ctx.Data["Team"] = ctx.Org.Team
 | 
						ctx.Data["Team"] = ctx.Org.Team
 | 
				
			||||||
	ctx.Data["Units"] = unit_model.Units
 | 
						ctx.Data["Units"] = unit_model.Units
 | 
				
			||||||
	ctx.HTML(http.StatusOK, tplTeamNew)
 | 
						ctx.HTML(http.StatusOK, tplTeamNew)
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user