We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e64ad2e commit b6135acCopy full SHA for b6135ac
1 file changed
packages/super-editor/src/core/super-converter/v2/importer/annotationImporter.js
@@ -55,8 +55,8 @@ export const handleAnnotationNode = (params) => {
55
if (!allAttrs.hash) allAttrs.hash = generateDocxRandomId(4);
56
57
// Some w:sdt nodes have attrs.fieldId (coming from GoogleDocs) so we need a secondary check
58
- // Expecting fieldType if its a field annotation
59
- if (!attrs.fieldId || !attrs.fieldType) {
+ // Expecting `type` if its a field annotation
+ if (!attrs.fieldId || !attrs.type) {
60
return { nodes: [], consumed: 0 };
61
}
62
0 commit comments