Skip to content

Commit

Permalink
Add missing semicolon :|
Browse files Browse the repository at this point in the history
  • Loading branch information
tellthemachines committed Mar 30, 2022
1 parent 50122a5 commit 6ac2422
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/block-supports/layout.php
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ function gutenberg_apply_layout_support( $block_type, $block_attributes ) {
$classes[] = 'has-layout-vertical';
// Space-between doesn't work on vertical layouts so use default.
if ( $justify_content === 'space-between') {
$classes[] = 'has-layout-vertical-left'
$classes[] = 'has-layout-vertical-left';
} else {
$classes[] = sprintf( 'has-layout-vertical-%s', _wp_to_kebab_case( $justify_content ) );
}
Expand Down

0 comments on commit 6ac2422

Please sign in to comment.