diff options
author | Alex Ward <alxwrd@googlemail.com> | 2018-03-20 21:39:14 +0000 |
---|---|---|
committer | Lauris BH <lauris@nix.lv> | 2018-03-20 23:39:14 +0200 |
commit | 4ebdcbc5df17afe3b88237386c8c923ae07a68b4 (patch) | |
tree | 758d2644327fe07cb9a3af54c759260f1987b1b2 /routers/repo | |
parent | 43fc430c078d61cf7ab428c3cf0e07eeebd0445e (diff) | |
download | gitea-4ebdcbc5df17afe3b88237386c8c923ae07a68b4.tar.gz gitea-4ebdcbc5df17afe3b88237386c8c923ae07a68b4.zip |
Fix style of "In your repositories" when selected (#3699)
Signed-off-by: Alex Ward <alxwrd@googlemail.com>
Diffstat (limited to 'routers/repo')
-rw-r--r-- | routers/repo/issue.go | 2 |
1 files changed, 1 insertions, 1 deletions
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" } |