CheckboxControl does not visible change
I use the following code to add a custom option in the Gutenberg-sidebar. Its visible and saving the Checkbox-value works.
But: if I click on the CheckboxControl nothing visible changes on it. If it is not checked and I want to check it, it does not go checked. The Update-button goes active and I see the checked Checkbox after it.
Why?
import { CheckboxControl } from '@wordpress/components';
import { dispatch, select } from '@wordpress/data';
import { PluginDocumentSettingPanel } from '@wordpress/edit-post';
import { Component } from '@wordpress/element';
import { __ } from '@wordpress/i18n';
export default class Sidebar extends Component {
render() {
const meta = select( 'core/editor' ).getEditedPostAttribute( 'meta' );
const toggleState = meta['code'];
return (
PluginDocumentSettingPanel
name=code
title={ __( 'Display Settings', 'myplugin' ) }
CheckboxControl
checked={ toggleState }
help={ __( 'My help.', 'myplugin' ) }
label={ __( 'My Label', 'myplugin' ) }
onChange={ ( value ) = {
dispatch( 'core/editor' ).editPost( {
meta: {
'code': value,
},
} );
} }
/
/PluginDocumentSettingPanel
);
}
}
Topic block-editor sidebar Wordpress
Category Web