Skip to content

Commit

Permalink
Coding standards fix
Browse files Browse the repository at this point in the history
  • Loading branch information
aristath committed Jul 25, 2023
1 parent 2c618ca commit 1df8a9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/block-supports/typography.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ function gutenberg_register_typography_support( $block_type ) {
$has_text_columns_support = isset( $typography_supports['textColumns'] ) && $typography_supports['textColumns'];
$has_text_decoration_support = isset( $typography_supports['__experimentalTextDecoration'] ) && $typography_supports['__experimentalTextDecoration'];
$has_text_transform_support = isset( $typography_supports['__experimentalTextTransform'] ) && $typography_supports['__experimentalTextTransform'];
$has_writing_mode_support = isset( $typography_supports['__experimentalWritingMode'] ) && $typography_supports['__experimentalWritingMode'];
$has_writing_mode_support = isset( $typography_supports['__experimentalWritingMode'] ) && $typography_supports['__experimentalWritingMode'];

$has_typography_support = $has_font_family_support
|| $has_font_size_support
Expand Down

0 comments on commit 1df8a9f

Please sign in to comment.