Skip to content

Commit

Permalink
Update the order of block support slots
Browse files Browse the repository at this point in the history
This is a step towards achieving the panel order as outlined in #35541
  • Loading branch information
aaronrobertshaw committed Dec 17, 2021
1 parent fa813b6 commit d1dae14
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions packages/block-editor/src/components/block-inspector/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,14 +71,14 @@ const BlockInspector = ( { showNoBlockSelectedMessage = true } ) => {
__experimentalGroup="typography"
label={ __( 'Typography' ) }
/>
<InspectorControls.Slot
__experimentalGroup="border"
label={ __( 'Border' ) }
/>
<InspectorControls.Slot
__experimentalGroup="dimensions"
label={ __( 'Dimensions' ) }
/>
<InspectorControls.Slot
__experimentalGroup="border"
label={ __( 'Border' ) }
/>
</div>
);
}
Expand Down Expand Up @@ -143,14 +143,14 @@ const BlockInspectorSingleBlock = ( {
__experimentalGroup="typography"
label={ __( 'Typography' ) }
/>
<InspectorControls.Slot
__experimentalGroup="border"
label={ __( 'Border' ) }
/>
<InspectorControls.Slot
__experimentalGroup="dimensions"
label={ __( 'Dimensions' ) }
/>
<InspectorControls.Slot
__experimentalGroup="border"
label={ __( 'Border' ) }
/>
<div>
<AdvancedControls />
</div>
Expand Down

0 comments on commit d1dae14

Please sign in to comment.