diff --git a/scripts/helmdoc/main.go b/scripts/helmdoc/main.go index d07144c44..bbe24cd75 100644 --- a/scripts/helmdoc/main.go +++ b/scripts/helmdoc/main.go @@ -19,12 +19,6 @@ func printDocForSchema(schema map[string]any, indentLevel int) { indentStr := strings.Repeat(" ", indentLevel) names := slices.Collect(maps.Keys(schema)) sort.Slice(names, func(a, b int) bool { - if names[a] == "global" { - return true - } - if names[b] == "global" { - return false - } return names[a] < names[b] })