From 4ebdcbc5df17afe3b88237386c8c923ae07a68b4 Mon Sep 17 00:00:00 2001 From: Alex Ward Date: Tue, 20 Mar 2018 21:39:14 +0000 Subject: [PATCH] Fix style of "In your repositories" when selected (#3699) Signed-off-by: Alex Ward --- routers/repo/issue.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routers/repo/issue.go b/routers/repo/issue.go index a63572d5b6..234937b1af 100644 --- a/routers/repo/issue.go +++ b/routers/repo/issue.go @@ -111,7 +111,7 @@ func Issues(ctx *context.Context) { viewType := ctx.Query("type") sortType := ctx.Query("sort") - types := []string{"all", "assigned", "created_by", "mentioned"} + types := []string{"all", "your_repositories", "assigned", "created_by", "mentioned"} if !com.IsSliceContainsStr(types, viewType) { viewType = "all" }