Hi there,
The File upload option is missing for the image. Screenshot attached.

I've enabled it in my code though:
<Editor
wrapperClassName="editorWrapper"
toolbarClassName="toolbarWrapper"
onEditorStateChange={this.onEditorStateChange}
toolbar={{
options: ['inline', 'blockType', 'fontSize', 'list', 'textAlign', 'image', 'history'],
image: {
urlEnabled: true,
uploadEnabled: true,
uploadCallback: this.uploadFile
}
}}
/>
Am I missing something?
Thanks for this awesome component.
Sorry, figured out the problem. Hadn't written the uploadFile callback function.
Most helpful comment
Sorry, figured out the problem. Hadn't written the
uploadFilecallback function.