From 7db4e941ad0328fbc2832384afdb73d32d031112 Mon Sep 17 00:00:00 2001 From: alwqx Date: Thu, 10 Oct 2024 21:51:22 +0800 Subject: [PATCH] tmp fix column not padding --- cmd/quote/quote.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/quote/quote.go b/cmd/quote/quote.go index 30d94cb..cce0269 100644 --- a/cmd/quote/quote.go +++ b/cmd/quote/quote.go @@ -179,7 +179,7 @@ func printQuote(quotes []*sina.SecurityQuote) { table.SetAlignment(tablewriter.ALIGN_LEFT) table.SetHeaderLine(false) table.SetBorder(false) - table.SetNoWhiteSpace(true) + table.SetNoWhiteSpace(false) table.SetTablePadding("\t") // table.AppendBulk(data) table.Render()