diff --git a/frontend/src/core/editor.ts b/frontend/src/core/editor.ts index 1789c5e0..75677b8b 100644 --- a/frontend/src/core/editor.ts +++ b/frontend/src/core/editor.ts @@ -121,6 +121,13 @@ class Editor { */ public clearProject(): void { this.activeModel = new DiagramModel(); + this.projectInfo = { + 'name': '', + 'version': '', + 'description': '', + 'author': '', + 'image': '' + } this.engine.setModel(this.activeModel); }