fix(core): Add temporary workaround for a compile error (no-changelog) (#19087)

This commit is contained in:
Suguru Inoue
2025-09-02 12:25:49 +02:00
committed by GitHub
parent 583dd48d8a
commit 4eade9ff7a

View File

@@ -48,6 +48,7 @@ export class DataStoreRepository extends Repository<DataTable> {
);
if (columnEntities.length > 0) {
// @ts-ignore Workaround for intermittent typecheck issue with _QueryDeepPartialEntity
await em.insert(DataTableColumn, columnEntities);
}