Skip to content

Commit

Permalink
chore(web): fix published WAS area padding (#850)
Browse files Browse the repository at this point in the history
  • Loading branch information
airslice committed Dec 4, 2023
1 parent c8ad896 commit 569681f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions web/src/beta/features/PublishedVisualizer/hooks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,12 +110,12 @@ export default (alias?: string) => {
return {
align: align ?? "start",
padding: {
top: padding?.top || 6,
bottom: padding?.bottom || 6,
left: padding?.left || 6,
right: padding?.right || 6,
top: padding?.top ?? 6,
bottom: padding?.bottom ?? 6,
left: padding?.left ?? 6,
right: padding?.right ?? 6,
},
gap: area?.gap || 6,
gap: area?.gap ?? 6,
widgets: areaWidgets || [],
background: area?.background as string | undefined,
centered: area?.centered,
Expand Down

0 comments on commit 569681f

Please sign in to comment.