Skip to content

Commit

Permalink
fix NewLine (#11893)
Browse files Browse the repository at this point in the history
  • Loading branch information
beck-8 authored Apr 27, 2024
1 parent 5e1d8f6 commit 0a28ce4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cli/filplus.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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 {

Expand Down

0 comments on commit 0a28ce4

Please sign in to comment.