-
-
Notifications
You must be signed in to change notification settings - Fork 41
Open
Labels
Description
I am trying to use this with Firebase but am having issues getting the uploadURL to work.
The images are not getting uploaded to Firebase
my form :
<form class="comment-form" onSubmit={this.handleSubmit} onFocus={this.handleFocus}>
<div className="form-group comment-reply-content">
<TrixEditor
autoFocus={true}
placeholder="editor's placeholder"
value="initial content <strong>for the editor</strong>"
uploadURL="https://firebasestorage.googleapis.com/v0/b/boomapp-8d7cc.appspot.com/o/"
uploadData={{"key1": "value", "key2": "value"}}
mergeTags={mergeTags}
onChange={this.handleChange}
onEditorReady={this.handleEditorReady}
/>
</div>
<div className="form-group">
<input type="submit" className="btn btn-primary" />
</div>
</form>
Reactions are currently unavailable