Skip to content

Commit e459f99

Browse files
jolheiserlunny
authored andcommitted
Fix active issue (#9238)
Signed-off-by: jolheiser <[email protected]>
1 parent 23ef9ff commit e459f99

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

routers/user/home.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ func Issues(ctx *context.Context) {
178178
)
179179

180180
if ctxUser.IsOrganization() {
181-
viewType = "all"
181+
viewType = "your_repositories"
182182
} else {
183183
viewType = ctx.Query("type")
184184
switch viewType {
@@ -188,9 +188,9 @@ func Issues(ctx *context.Context) {
188188
filterMode = models.FilterModeCreate
189189
case "mentioned":
190190
filterMode = models.FilterModeMention
191-
case "all": // filterMode already set to All
191+
case "your_repositories": // filterMode already set to All
192192
default:
193-
viewType = "all"
193+
viewType = "your_repositories"
194194
}
195195
}
196196

0 commit comments

Comments
 (0)