From 7ed130db6a88806dab7c4ed16fe843e9c8bf416b Mon Sep 17 00:00:00 2001 From: Drapich Piotr Date: Tue, 18 Feb 2020 13:07:13 +0100 Subject: [PATCH] Add view with accesibility label on top of floating toolbar (#20267) --- .../src/components/block-list/block.native.js | 46 +++++++++---------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/packages/block-editor/src/components/block-list/block.native.js b/packages/block-editor/src/components/block-list/block.native.js index 87b23502fe9ad..835cab6b9ba10 100644 --- a/packages/block-editor/src/components/block-list/block.native.js +++ b/packages/block-editor/src/components/block-list/block.native.js @@ -198,27 +198,27 @@ class BlockListBlock extends Component { ); return ( - <> - { isSelected && ( - - - - this.props.onSelect( parentId ) - } - icon={ NavigateUpSVG } - /> - - - - - ) } - + + + { isSelected && ( + + + + this.props.onSelect( parentId ) + } + icon={ NavigateUpSVG } + /> + + + + + ) } - - + + ); } }