Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove one occurrence of incorrect usage of ItemGroup. #67427

Merged
merged 2 commits into from
Dec 2, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix toggling visibility of the help text.
  • Loading branch information
afercia committed Dec 2, 2024
commit bcbf51e5dc134726454102910562ea70b6e418b4
14 changes: 10 additions & 4 deletions packages/block-editor/src/hooks/block-bindings.js
Original file line number Diff line number Diff line change
Expand Up @@ -300,10 +300,16 @@ export const BlockBindingsPanel = ( { name: blockName, metadata } ) => {
/>
) }
</ItemGroup>
<Text as="p" variant="muted">
{ __(
'Attributes connected to custom fields or other dynamic data.'
) }
{ /*
Use a div element to make the ToolsPanelHiddenInnerWrapper
toggle the visibility of this help text automatically.
*/ }
<Text as="div" variant="muted">
<p>
{ __(
'Attributes connected to custom fields or other dynamic data.'
) }
</p>
</Text>
</ToolsPanel>
</InspectorControls>
Expand Down
Loading