1
0
mirror of https://github.com/go-gitea/gitea.git synced 2025-02-02 15:09:33 -05:00
This commit is contained in:
Thomas E Lackey 2025-01-10 15:02:29 -06:00
parent 041b352f5c
commit 4e89634bd8

View File

@ -9,6 +9,7 @@ import (
"maps" "maps"
"net/http" "net/http"
"slices" "slices"
"sort"
"strconv" "strconv"
"strings" "strings"
@ -476,6 +477,7 @@ func renderExclusiveLabelScopes(ctx *context.Context) {
} }
scopes := slices.Collect(maps.Keys(scopeSet)) scopes := slices.Collect(maps.Keys(scopeSet))
sort.Strings(scopes)
ctx.Data["ExclusiveLabelScopes"] = scopes ctx.Data["ExclusiveLabelScopes"] = scopes
} }