Signed-off-by: jolheiser <john.olheiser@gmail.com>
This commit is contained in:
John Olheiser 2019-12-03 00:01:29 -06:00 коммит произвёл Lunny Xiao
Родитель 23ef9ff516
Коммит e459f99ef2
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -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"
}
}