Skip to content

Commit

Permalink
Apply TreeGridRow props
Browse files Browse the repository at this point in the history
  • Loading branch information
getdave committed Nov 23, 2022
1 parent 1a3b041 commit 2ad866f
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions packages/block-editor/src/components/off-canvas-editor/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -221,11 +221,16 @@ function __ExperimentalOffCanvasEditor(
shouldShowInnerBlocks={ shouldShowInnerBlocks }
selectBlockInCanvas={ selectBlockInCanvas }
/>
<TreeGridRow>
<TreeGridRow
level={ 1 }
setSize={ 1 }
positionInSet={ 1 }
isExpanded={ true }
>
<TreeGridCell>
{ ( props ) => (
{ ( treeGridCellProps ) => (
<Appender
{ ...props }
{ ...treeGridCellProps }
rootClientId={ clientId }
/>
) }
Expand Down

0 comments on commit 2ad866f

Please sign in to comment.