From 690326df5acf965a0ce2cf996eca5b3c048614a6 Mon Sep 17 00:00:00 2001 From: Carolina Nymark Date: Tue, 3 May 2022 17:11:03 +0200 Subject: [PATCH] Add a space between the CSS class names (#40613) --- packages/block-library/src/post-comments-form/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/block-library/src/post-comments-form/index.php b/packages/block-library/src/post-comments-form/index.php index 712322e626fede..accceace3cdb9b 100644 --- a/packages/block-library/src/post-comments-form/index.php +++ b/packages/block-library/src/post-comments-form/index.php @@ -24,7 +24,7 @@ function render_block_core_post_comments_form( $attributes, $content, $block ) { $classes = 'comment-respond'; // See comment further below. if ( isset( $attributes['textAlign'] ) ) { - $classes .= 'has-text-align-' . $attributes['textAlign']; + $classes .= ' has-text-align-' . $attributes['textAlign']; } $wrapper_attributes = get_block_wrapper_attributes( array( 'class' => $classes ) );