react-email-editor icon indicating copy to clipboard operation
react-email-editor copied to clipboard

unable to disable tabs

Open ashishiiit01 opened this issue 1 year ago • 1 comments

I am unable to disable tabs (blocks and body ).

Here is my Code

<EmailEditor ref={emailEditorRef} onReady={onReady} tabs={{ content: { enabled: true, }, blocks: { enabled: false, }, body: { enabled: false }, }} tools={{ columns: { enabled: false } }} />

Any help Please ??

ashishiiit01 avatar Jun 29 '23 06:06 ashishiiit01

you have to pass the tabs object inside options:

<EmailEditor
options={{ tabs: { blocks: { enabled: false } } }}
... 
/>

SuarezLuis avatar Jan 23 '24 20:01 SuarezLuis