Skip to content

Commit 23c43b7

Browse files
committed
fix
1 parent 6d8670a commit 23c43b7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

meteor/server/migration/upgrades/system.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export async function runUpgradeForCoreSystem(coreSystemId: CoreSystemId): Promi
2929
lastBlueprintConfig: {
3030
blueprintHash: blueprint.blueprintHash,
3131
blueprintId: blueprint._id,
32-
blueprintConfigPresetId: '',
32+
blueprintConfigPresetId: undefined,
3333
config: {},
3434
},
3535
},

packages/corelib/src/dataModel/Blueprint.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ export interface Blueprint {
6464
export interface LastBlueprintConfig {
6565
blueprintId: BlueprintId
6666
blueprintHash: BlueprintHash
67-
blueprintConfigPresetId: string
67+
blueprintConfigPresetId: string | undefined
6868

6969
config: IBlueprintConfig
7070
}

0 commit comments

Comments
 (0)