From 78d4ba4362e658413616e093479bac0b42eb1610 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Palet?= Date: Tue, 21 Nov 2023 13:52:06 +0000 Subject: [PATCH] Restore new line after table output --- internal/pkg/tables/tables.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/pkg/tables/tables.go b/internal/pkg/tables/tables.go index 77260116..204f3caa 100644 --- a/internal/pkg/tables/tables.go +++ b/internal/pkg/tables/tables.go @@ -48,5 +48,5 @@ func (t *Table) Render(cmd *cobra.Command) { t.table.Style().Options.SeparateRows = false t.table.Style().Options.SeparateColumns = true t.table.Style().Options.SeparateHeader = true - cmd.Printf("\n%s\n", t.table.Render()) + cmd.Printf("\n%s\n\n", t.table.Render()) }