소스 검색

Fix active issue (#9238)

Signed-off-by: jolheiser <john.olheiser@gmail.com>
tags/v1.11.0-rc1
John Olheiser 4 년 전
부모
커밋
e459f99ef2
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3
    3
      routers/user/home.go

+ 3
- 3
routers/user/home.go 파일 보기

@@ -178,7 +178,7 @@ func Issues(ctx *context.Context) {
)

if ctxUser.IsOrganization() {
viewType = "all"
viewType = "your_repositories"
} else {
viewType = ctx.Query("type")
switch viewType {
@@ -188,9 +188,9 @@ func Issues(ctx *context.Context) {
filterMode = models.FilterModeCreate
case "mentioned":
filterMode = models.FilterModeMention
case "all": // filterMode already set to All
case "your_repositories": // filterMode already set to All
default:
viewType = "all"
viewType = "your_repositories"
}
}


Loading…
취소
저장