Skip to content

Commit 66e826a

Browse files
committed
Set empty height in ResizableBox when height is empty in inspector
1 parent f757010 commit 66e826a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

block/edit.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export default function Edit({ attributes, setAttributes }): WPElement {
1616
const heightWithUnit =
1717
height.value && height.unit
1818
? `${height.value}${height.unit}`
19-
: height.value;
19+
: '';
2020

2121
return (
2222
<>

0 commit comments

Comments
 (0)