mirror of https://github.com/fantasticit/think.git
Merge pull request #126 from fantasticit/fix/125
This commit is contained in:
commit
7c40a12e56
|
@ -136,7 +136,6 @@ export const DocumentExporter: React.FC<IProps> = ({ document, render }) => {
|
||||||
);
|
);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
console.log('doc', editor, document);
|
|
||||||
const c = safeJSONParse(document && document.content);
|
const c = safeJSONParse(document && document.content);
|
||||||
const json = c.default || c;
|
const json = c.default || c;
|
||||||
editor.commands.setContent(json);
|
editor.commands.setContent(json);
|
||||||
|
|
|
@ -37,6 +37,10 @@ function fixNode(doc) {
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
if (!node.content || !node.content.length) {
|
||||||
|
node.content = [{ attrs: {}, type: 'paragraph' }];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (node.content) {
|
if (node.content) {
|
||||||
|
|
Loading…
Reference in New Issue