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

This commit was merged in pull request #660.
This commit is contained in:
2025-09-09 16:55:23 -04:00
parent 5bb6241172
commit 07cafd371c
+1 -1
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 {