mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-06 03:57:56 +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.codeDsl = config.codeBlocks;
|
||||||
this.setPage(curPage || this.page?.data?.id);
|
this.setPage(curPage || this.page?.data?.id);
|
||||||
|
|
||||||
const dataSourceList = Array.from(this.dataSourceManager!.dataSourceMap.values());
|
if (this.dataSourceManager) {
|
||||||
this.eventHelper?.bindDataSourceEvents(dataSourceList);
|
const dataSourceList = Array.from(this.dataSourceManager.dataSourceMap.values());
|
||||||
|
this.eventHelper?.bindDataSourceEvents(dataSourceList);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public setPage(id?: Id) {
|
public setPage(id?: Id) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user