summaryrefslogtreecommitdiff
path: root/internal
diff options
context:
space:
mode:
Diffstat (limited to 'internal')
-rw-r--r--internal/atable/table.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/atable/table.go b/internal/atable/table.go
index 3e6cc93..528276f 100644
--- a/internal/atable/table.go
+++ b/internal/atable/table.go
@@ -530,7 +530,7 @@ func addSpacingStyled(cells []string, style lipgloss.Style) []string {
spaced := make([]string, 0, len(cells)*2-1)
for i, cell := range cells {
if i > 0 {
- spaced = append(spaced, style.Render(" "))
+ spaced = append(spaced, style.Copy().Padding(0, 0).Render(" "))
}
spaced = append(spaced, cell)
}