Editor: Remove extra line break in `build_template_part_block_instance_variations()`.

This extra break was causing a QUnit failure check validating version controlled file contents.

Follow-up to [54483].

See #56467.
Built from https://develop.svn.wordpress.org/trunk@54487


git-svn-id: http://core.svn.wordpress.org/trunk@54046 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
davidbaumwald 2022-10-11 15:41:13 +00:00
parent 0b33636e64
commit dd2cc423ef
5 changed files with 5 additions and 5 deletions

View File

@ -100,7 +100,7 @@ function block_core_navigation_link_build_css_font_sizes( $context ) {
// Add the custom font size inline style.
$font_sizes['inline_styles'] = sprintf(
'font-size: %s;',
wp_get_typography_font_size_value(
gutenberg_get_typography_font_size_value(
array(
'size' => $context['style']['typography']['fontSize'],
)

View File

@ -100,7 +100,7 @@ function block_core_navigation_submenu_build_css_font_sizes( $context ) {
// Add the custom font size inline style.
$font_sizes['inline_styles'] = sprintf(
'font-size: %s;',
wp_get_typography_font_size_value(
gutenberg_get_typography_font_size_value(
array(
'size' => $context['style']['typography']['fontSize'],
)

View File

@ -121,7 +121,7 @@ function block_core_page_list_build_css_font_sizes( $context ) {
// Add the custom font size inline style.
$font_sizes['inline_styles'] = sprintf(
'font-size: %s;',
wp_get_typography_font_size_value(
gutenberg_get_typography_font_size_value(
array(
'size' => $context['style']['typography']['fontSize'],
)

View File

@ -444,7 +444,7 @@ function get_typography_styles_for_block_core_search( $attributes ) {
if ( ! empty( $attributes['style']['typography']['fontSize'] ) ) {
$typography_styles[] = sprintf(
'font-size: %s;',
wp_get_typography_font_size_value(
gutenberg_get_typography_font_size_value(
array(
'size' => $attributes['style']['typography']['fontSize'],
)

View File

@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
$wp_version = '6.1-beta3-54486';
$wp_version = '6.1-beta3-54487';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.