Skip to content

Commit

Permalink
Add a space between the CSS class names (#40613)
Browse files Browse the repository at this point in the history
  • Loading branch information
carolinan authored May 3, 2022
1 parent 5d7dd12 commit 690326d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/block-library/src/post-comments-form/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -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 ) );
Expand Down

0 comments on commit 690326d

Please sign in to comment.