WIP Dashboard work.

This commit is contained in:
Patrick Fic
2020-03-04 16:45:01 -08:00
parent 4e214041ae
commit 50bc42347a
3 changed files with 48 additions and 22 deletions

View File

@@ -31,6 +31,11 @@ export default function EmailOverlayComponent({
editor={ClassicEditor}
data={messageOptions.html}
onChange={(event, editor) => {
// handleHtmlChange(editor.getData());
//TODO Ensure that removing onchange never introduces a race condition
}}
onBlur={(event, editor) => {
console.log("Blur.");
handleHtmlChange(editor.getData());
}}
/>