mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-03-17 03:04:27 +00:00
fix: 修复初始页面就有两条历史记录
This commit is contained in:
parent
251b5c496e
commit
c21aeb9a5c
@ -86,7 +86,7 @@ export class DocumentModel {
|
||||
}
|
||||
|
||||
get fileName(): string {
|
||||
return this.rootNode?.getExtraProp('fileName')?.getAsString() || this.id;
|
||||
return this.rootNode?.getExtraProp('fileName', false)?.getAsString() || this.id;
|
||||
}
|
||||
|
||||
set fileName(fileName: string) {
|
||||
|
||||
@ -57,7 +57,6 @@ export class History {
|
||||
this.emitter.emit('statechange', currentState);
|
||||
}
|
||||
}
|
||||
// }
|
||||
});
|
||||
}, { fireImmediately: true });
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user