From 29fc1b113fca05019ba19f9b93f3a4d51be64fa5 Mon Sep 17 00:00:00 2001 From: jaasen-livefront Date: Mon, 10 Nov 2025 10:17:32 -0800 Subject: [PATCH] fix type error --- libs/common/src/models/export/folder-with-id.export.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/common/src/models/export/folder-with-id.export.ts b/libs/common/src/models/export/folder-with-id.export.ts index 4c31ccba137..7ed8a83fccf 100644 --- a/libs/common/src/models/export/folder-with-id.export.ts +++ b/libs/common/src/models/export/folder-with-id.export.ts @@ -18,7 +18,7 @@ export class FolderWithIdExport extends FolderExport { // Use build method instead of ctor so that we can control order of JSON stringify for pretty print build(o: FolderView | FolderDomain) { - this.id = o.id; + this.id = o.id ?? ""; super.build(o); } }