fix: top-align table cells in horizontal()
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing

This commit is contained in:
3wc
2025-09-09 16:55:23 -04:00
parent 5bb6241172
commit 07cafd371c

View File

@ -100,7 +100,7 @@ func PrintTable(t *table.Table) error {
// horizontal is a JoinHorizontal helper function.
func horizontal(left, mid, right string) string {
return lipgloss.JoinHorizontal(lipgloss.Right, left, mid, right)
return lipgloss.JoinHorizontal(lipgloss.Top, left, mid, right)
}
func CreateOverview(header string, rows [][]string) string {