From 7f242988d3b280283f656f7f394e1db7a109472c Mon Sep 17 00:00:00 2001 From: beck <34204218+beck-8@users.noreply.github.com> Date: Sat, 27 Apr 2024 17:17:00 +0800 Subject: [PATCH] fix NewLine (#11893) --- cli/filplus.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/filplus.go b/cli/filplus.go index d25735a2e..098636ee0 100644 --- a/cli/filplus.go +++ b/cli/filplus.go @@ -330,7 +330,7 @@ var filplusListAllocationsCmd = &cli.Command{ tablewriter.Col(pieceSize), tablewriter.Col(tMin), tablewriter.Col(tMax), - tablewriter.NewLineCol(expr)) + tablewriter.Col(expr)) // populate it with content for _, alloc := range allocs { tw.Write(alloc) @@ -479,7 +479,7 @@ var filplusListClaimsCmd = &cli.Command{ tablewriter.Col(tMin), tablewriter.Col(tMax), tablewriter.Col(tStart), - tablewriter.NewLineCol(sector)) + tablewriter.Col(sector)) // populate it with content for _, alloc := range claimList {