replace emoji-style tick/cross + N/A with cleaner symbols.

update screenshots.
This commit is contained in:
2026-01-24 20:09:22 +00:00
parent 7855ce5d54
commit 6a629ec3e9
4 changed files with 3 additions and 3 deletions

View File

@@ -24,12 +24,12 @@ func getEnabledMark(enabled bool) string {
if os.Getenv("NO_COLOR") != "" { // nolint: misspell
return "✓"
}
return ""
return ""
}
if os.Getenv("NO_COLOR") != "" { // nolint: misspell
return "✗"
}
return ""
return ""
}
func trimPrefix(s, prefix string) string {