Skip to content

Commit

Permalink
hack
Browse files Browse the repository at this point in the history
  • Loading branch information
Selyss committed Nov 20, 2023
1 parent 742d80a commit 9020cf2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/assembuddy/renderTable.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ func RenderTable(arch string, tableData []Syscall) {

var (
CellStyle = re.NewStyle().Padding(0, 1).Align(lipgloss.Center)
RowStyle = CellStyle.Copy().Foreground(white)
RowStyle = CellStyle.Copy().Foreground(white).MaxWidth(12).PaddingBottom(1)
)

var (
Expand Down Expand Up @@ -64,6 +64,7 @@ func RenderTable(arch string, tableData []Syscall) {
return style
}).
Rows(rows...)

getHeaders(arch, t)
fmt.Println(t)
}
Expand Down

0 comments on commit 9020cf2

Please sign in to comment.