Skip to content

Commit 97803be

Browse files
add missed min-width check
1 parent 6a144f3 commit 97803be

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

packages/block-editor/src/hooks/dimensions.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,8 @@ export function hasDimensionsSupport( blockName, feature = 'any' ) {
165165
support?.aspectRatio ||
166166
!! support?.height ||
167167
!! support?.minHeight ||
168-
!! support?.width
168+
!! support?.width ||
169+
!! support?.minWidth
169170
);
170171
}
171172

0 commit comments

Comments
 (0)