fix: 修复编辑器中crud2 id自动修改问题 (#10989)

Co-authored-by: qinhaoyan <30946345+qinhaoyan@users.noreply.github.com>
This commit is contained in:
qkiroc 2024-10-08 20:58:06 +08:00 committed by GitHub
parent a751ede14e
commit ab2a052638
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1895,7 +1895,7 @@ export class EditorManager {
(id, value) => batch.unshift({id, value}),
ids
);
ids.set(schema.id, node.schemaPath);
node.schemaPath && ids.set(schema.id, node.schemaPath);
}
});
};