-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Description
We're seeing the following warning in the browser console
PluginDocumentSettingPanel requires a name property. Error Component Stack
Proposed Solution
Update
block-xray-attributes/src/components/BlockXrayPanel/index.js
Lines 13 to 18 in 516c3f7
| <PluginDocumentSettingPanel | |
| icon="code-standards" | |
| title={__( 'Block X-ray', 'block-xray-attributes' )} | |
| > | |
| <BlockXrayWithSelectedBlock /> | |
| </PluginDocumentSettingPanel> |
to
<PluginDocumentSettingPanel
name="block-xray-attributes"
icon="code-standards"
title={__( 'Block X-ray', 'block-xray-attributes' )}
>
<BlockXrayWithSelectedBlock />
</PluginDocumentSettingPanel>
i.e. add name="block-xray-attributes" to PluginDocumentSettingPanel
Metadata
Metadata
Assignees
Labels
No labels
