mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-05 19:41:40 +08:00
fix(core): 没有数据源配置时,不初始化数据源事件
This commit is contained in:
parent
f79e89e0ec
commit
2186fc4e87
@ -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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user