diff --git a/invokeai/frontend/web/src/features/nodes/util/graphBuilders/buildTextToImageGraph.ts b/invokeai/frontend/web/src/features/nodes/util/graphBuilders/buildTextToImageGraph.ts index 737d8d5b61..753ccccff8 100644 --- a/invokeai/frontend/web/src/features/nodes/util/graphBuilders/buildTextToImageGraph.ts +++ b/invokeai/frontend/web/src/features/nodes/util/graphBuilders/buildTextToImageGraph.ts @@ -121,6 +121,8 @@ export const buildTextToImageGraph = (state: RootState): Graph => { id: NOISE, type: 'noise', seed: seed, + width, + height, }; graph.nodes[NOISE] = noiseNode; @@ -147,6 +149,8 @@ export const buildTextToImageGraph = (state: RootState): Graph => { const noiseNode: NoiseInvocation = { id: NOISE, type: 'noise', + width, + height, }; graph.nodes[RANDOM_INT] = randomIntNode; @@ -193,6 +197,8 @@ export const buildTextToImageGraph = (state: RootState): Graph => { const noiseNode: NoiseInvocation = { id: NOISE, type: 'noise', + width, + height, }; // Adding to the graph