File tree Expand file tree Collapse file tree 3 files changed +4
-6
lines changed
block-editor/src/components Expand file tree Collapse file tree 3 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -251,7 +251,7 @@ const BlockInspectorSingleBlock = ( { clientId, blockName } ) => {
251
251
< div className = "block-editor-block-inspector" >
252
252
< BlockCard { ...blockInformation } />
253
253
< BlockVariationTransforms blockClientId = { clientId } />
254
- < InspectorControls . Slot __experimentalGroup = "blockInformation " />
254
+ < InspectorControls . Slot __experimentalGroup = "info " />
255
255
{ showTabs && (
256
256
< InspectorControlsTabs
257
257
hasBlockStyles = { hasBlockStyles }
Original file line number Diff line number Diff line change @@ -7,23 +7,21 @@ const InspectorControlsDefault = createSlotFill( 'InspectorControls' );
7
7
const InspectorControlsAdvanced = createSlotFill ( 'InspectorAdvancedControls' ) ;
8
8
const InspectorControlsBorder = createSlotFill ( 'InspectorControlsBorder' ) ;
9
9
const InspectorControlsColor = createSlotFill ( 'InspectorControlsColor' ) ;
10
+ const InspectorControlsInfo = createSlotFill ( 'InspectorControlsInfo' ) ;
10
11
const InspectorControlsDimensions = createSlotFill (
11
12
'InspectorControlsDimensions'
12
13
) ;
13
14
const InspectorControlsTypography = createSlotFill (
14
15
'InspectorControlsTypography'
15
16
) ;
16
- const InspectorControlsBlockInformation = createSlotFill (
17
- 'InspectorControlsBlockInformation'
18
- ) ;
19
17
20
18
const groups = {
21
19
default : InspectorControlsDefault ,
22
20
advanced : InspectorControlsAdvanced ,
23
- blockInformation : InspectorControlsBlockInformation ,
24
21
border : InspectorControlsBorder ,
25
22
color : InspectorControlsColor ,
26
23
dimensions : InspectorControlsDimensions ,
24
+ info : InspectorControlsInfo ,
27
25
typography : InspectorControlsTypography ,
28
26
} ;
29
27
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ const queryTopInspectorControls = createHigherOrderComponent(
40
40
41
41
return (
42
42
< >
43
- < InspectorControls __experimentalGroup = "blockInformation " >
43
+ < InspectorControls __experimentalGroup = "info " >
44
44
< CreateNewPostLink { ...props } />
45
45
</ InspectorControls >
46
46
< BlockEdit key = "edit" { ...props } />
You can’t perform that action at this time.
0 commit comments