Automattic / isolated-block-editor

Repackages Gutenberg's editor playground as a full-featured multi-instance editor that does not require WordPress.
344 stars 50 forks source link

Question about iso.toolbar props #211

Closed carolinan closed 1 year ago

carolinan commented 1 year ago

Is there a way I can set the iso.toolbar props to always show the list view and the inspector, without the ability to toggle them on and off?

My current settings:

    'toolbar'     => array(
        'navigation' => true, // list view
        'inspector'  => true, // block settings sidebar
        'undo'       => true,
        'inserter'   => false, // block inserter at top left
        'documentInspector' => null, // document settings sidebar
        ),
johngodley commented 1 year ago

No, it's not currently possible to do that. The logic matches how Gutenberg works.

carolinan commented 1 year ago

Thank you :)