We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d8670a commit 23c43b7Copy full SHA for 23c43b7
meteor/server/migration/upgrades/system.ts
@@ -29,7 +29,7 @@ export async function runUpgradeForCoreSystem(coreSystemId: CoreSystemId): Promi
29
lastBlueprintConfig: {
30
blueprintHash: blueprint.blueprintHash,
31
blueprintId: blueprint._id,
32
- blueprintConfigPresetId: '',
+ blueprintConfigPresetId: undefined,
33
config: {},
34
},
35
packages/corelib/src/dataModel/Blueprint.ts
@@ -64,7 +64,7 @@ export interface Blueprint {
64
export interface LastBlueprintConfig {
65
blueprintId: BlueprintId
66
blueprintHash: BlueprintHash
67
- blueprintConfigPresetId: string
+ blueprintConfigPresetId: string | undefined
68
69
config: IBlueprintConfig
70
}
0 commit comments