mirror of
https://github.com/arikchakma/maily.to.git
synced 2026-04-26 14:45:57 +03:00
[GH-ISSUE #193] Tiny column spacing bug #71
Labels
No labels
enhancement
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/maily.to#71
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @bernaferrari on GitHub (Apr 29, 2025).
Original GitHub issue: https://github.com/arikchakma/maily.to/issues/193
In maily.tsx inside
adjustColumnsContent, thisconst gap = node.attrs?.gap || DEFAULT_COLUMNS_GAP;should become
const gap = node.attrs?.gap ?? DEFAULT_COLUMNS_GAP;Because when gap is zero, column is being exported with padding 4 (gap = 8/2) due to 0 || 8 = 8.
@arikchakma commented on GitHub (Apr 29, 2025):
Ah, okay, good catch.