We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 926136d commit 19c207dCopy full SHA for 19c207d
packages/designer/src/document/document-model.ts
@@ -86,7 +86,7 @@ export class DocumentModel {
86
}
87
88
get fileName(): string {
89
- return this.rootNode?.getExtraProp('fileName')?.getAsString() || this.id;
+ return this.rootNode?.getExtraProp('fileName', false)?.getAsString() || this.id;
90
91
92
set fileName(fileName: string) {
0 commit comments