From 4e89634bd8f0035f08075a084225465a96143974 Mon Sep 17 00:00:00 2001 From: Thomas E Lackey Date: Fri, 10 Jan 2025 15:02:29 -0600 Subject: [PATCH] sirt --- routers/web/repo/issue_list.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/routers/web/repo/issue_list.go b/routers/web/repo/issue_list.go index 1c57320df1..40aaa9a248 100644 --- a/routers/web/repo/issue_list.go +++ b/routers/web/repo/issue_list.go @@ -9,6 +9,7 @@ import ( "maps" "net/http" "slices" + "sort" "strconv" "strings" @@ -476,6 +477,7 @@ func renderExclusiveLabelScopes(ctx *context.Context) { } scopes := slices.Collect(maps.Keys(scopeSet)) + sort.Strings(scopes) ctx.Data["ExclusiveLabelScopes"] = scopes }