fix(core): 没有数据源配置时,不初始化数据源事件

This commit is contained in:
roymondchen 2024-11-28 15:12:04 +08:00 committed by roymondchen
parent f79e89e0ec
commit 2186fc4e87

View File

@ -145,8 +145,10 @@ class App extends EventEmitter {
this.codeDsl = config.codeBlocks;
this.setPage(curPage || this.page?.data?.id);
const dataSourceList = Array.from(this.dataSourceManager!.dataSourceMap.values());
this.eventHelper?.bindDataSourceEvents(dataSourceList);
if (this.dataSourceManager) {
const dataSourceList = Array.from(this.dataSourceManager.dataSourceMap.values());
this.eventHelper?.bindDataSourceEvents(dataSourceList);
}
}
public setPage(id?: Id) {