Widgets: Missing markup from Widgets Group block.

This change fixes an issue in the Widgets editor: widgets group was missing a `.wp-widget-group__inner-blocks` container.

Props noisysocks, ironprogrammer.
Fixes #55072.


git-svn-id: https://develop.svn.wordpress.org/trunk@52730 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Jb Audras
2022-02-15 09:56:02 +00:00
parent bb68a8b1e4
commit 27a9de78ab
2 changed files with 2 additions and 0 deletions

View File

@@ -346,5 +346,6 @@ function _unhook_block_registration() {
remove_action( 'init', 'register_block_core_template_part' );
remove_action( 'init', 'register_block_core_term_description' );
remove_action( 'init', 'register_core_block_types_from_metadata' );
remove_action( 'init', 'register_block_core_widget_group' );
}
tests_add_filter( 'init', '_unhook_block_registration', 1000 );