From 07cafd371cd7838fe5f83be8ecb4cf476caafaea Mon Sep 17 00:00:00 2001 From: 3wc <3wc@doesthisthing.work> Date: Tue, 9 Sep 2025 16:55:23 -0400 Subject: [PATCH] fix: top-align table cells in horizontal() --- pkg/formatter/formatter.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/formatter/formatter.go b/pkg/formatter/formatter.go index 567a2e6e..1ffca2f7 100644 --- a/pkg/formatter/formatter.go +++ b/pkg/formatter/formatter.go @@ -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 {