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

fix: innerBlocks schema description in block.json #58649

Merged
merged 3 commits into from
Feb 6, 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
2 changes: 1 addition & 1 deletion schemas/json/block.json
Original file line number Diff line number Diff line change
Expand Up @@ -739,7 +739,7 @@
},
"innerBlocks": {
"type": "array",
"description": "Set the inner blocks that should be used within the block example. The blocks should be defined as a nested array like this: \n\n [ [ 'core/heading', { content: 'This is an Example' }, [] ] ]\n\n Where each block itself is an array that contains the block name, the block attributes, and the blocks inner blocks."
"description": "Set the inner blocks that should be used within the block example. The blocks should be defined as a nested array like this:\\n\\n[{ name: 'core/heading', innerBlocks: [{ name: 'core/subheading', attributes: { content: 'This is an example.' }}, { }] }]\\n\\nWhere each block itself is an object that contains the block name, the block attributes, and the blocks inner blocks."
t-hamano marked this conversation as resolved.
Show resolved Hide resolved
}
}
},
Expand Down
Loading