unlayer / react-email-editor

Drag-n-Drop Email Editor Component for React.js
https://unlayer.com/embed
MIT License
4.53k stars 730 forks source link

unable to disable tabs #346

Open ashishiiit01 opened 1 year ago

ashishiiit01 commented 1 year ago

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 ??

SuarezLuis commented 7 months ago

you have to pass the tabs object inside options:

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