Skip to content

Commit

Permalink
Remove inner wrapper for grid Groups in classic themes (#49387)
Browse files Browse the repository at this point in the history
  • Loading branch information
tellthemachines authored Mar 28, 2023
1 parent 8241a10 commit 3d51087
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/block-supports/layout.php
Original file line number Diff line number Diff line change
Expand Up @@ -580,7 +580,7 @@ function gutenberg_restore_group_inner_container( $block_content, $block ) {
if (
wp_theme_has_theme_json() ||
1 === preg_match( $group_with_inner_container_regex, $block_content ) ||
( isset( $block['attrs']['layout']['type'] ) && 'flex' === $block['attrs']['layout']['type'] )
( isset( $block['attrs']['layout']['type'] ) && ( 'flex' === $block['attrs']['layout']['type'] || 'grid' === $block['attrs']['layout']['type'] ) )
) {
return $block_content;
}
Expand Down
3 changes: 2 additions & 1 deletion packages/block-library/src/group/edit.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,8 @@ function GroupEdit( {
? { ...defaultLayout, ...layout, type: 'default' }
: { ...defaultLayout, ...layout };
const { type = 'default' } = usedLayout;
const layoutSupportEnabled = themeSupportsLayout || type === 'flex';
const layoutSupportEnabled =
themeSupportsLayout || type === 'flex' || type === 'grid';

// Hooks.
const blockProps = useBlockProps( {
Expand Down

0 comments on commit 3d51087

Please sign in to comment.