fix: HTML export

This commit is contained in:
Tom Moor
2023-07-05 08:47:17 -04:00
parent e6e9512979
commit ff1bc5db2a

View File

@@ -25,7 +25,7 @@ export default class Comment extends Mark {
getAttrs: (dom: HTMLSpanElement) => { getAttrs: (dom: HTMLSpanElement) => {
// Ignore comment markers from other documents // Ignore comment markers from other documents
const documentId = dom.getAttribute("data-document-id"); const documentId = dom.getAttribute("data-document-id");
if (documentId && documentId !== this.editor.props.id) { if (documentId && documentId !== this.editor?.props.id) {
return false; return false;
} }
@@ -42,7 +42,7 @@ export default class Comment extends Mark {
class: "comment-marker", class: "comment-marker",
id: `comment-${node.attrs.id}`, id: `comment-${node.attrs.id}`,
"data-user-id": node.attrs.userId, "data-user-id": node.attrs.userId,
"data-document-id": this.editor.props.id, "data-document-id": this.editor?.props.id,
}, },
], ],
}; };