mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-22 17:18:32 +01:00
Coding Standards: Fix WPCS issue in [51682].
This fixes a "Misleading line break before `'||'`; readers may interpret this as an expression boundary" error. See #54030. Built from https://develop.svn.wordpress.org/trunk@51683 git-svn-id: http://core.svn.wordpress.org/trunk@51289 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
79b0d3f3e8
commit
42c7a1fad5
@ -8462,8 +8462,8 @@
|
||||
}
|
||||
|
||||
// Abort if we're inside of a block editor instance.
|
||||
if ( event.target.closest( '.block-editor-writing-flow' ) !== null
|
||||
|| event.target.closest( '.block-editor-block-list__block-popover' ) !== null
|
||||
if ( event.target.closest( '.block-editor-writing-flow' ) !== null ||
|
||||
event.target.closest( '.block-editor-block-list__block-popover' ) !== null
|
||||
) {
|
||||
return;
|
||||
}
|
||||
|
@ -13,7 +13,7 @@
|
||||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.9-alpha-51682';
|
||||
$wp_version = '5.9-alpha-51683';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
Loading…
Reference in New Issue
Block a user