Skip to content

Commit 62f52c7

Browse files
fix(ui): linked negative style prompt not passed in
Closes #8256
1 parent 97439c1 commit 62f52c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

invokeai/frontend/web/src/features/nodes/util/graph/generation/buildSDXLGraph.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ export const buildSDXLGraph = async (arg: GraphBuilderArg): Promise<GraphBuilder
7878
type: 'sdxl_compel_prompt',
7979
id: getPrefixedId('neg_cond'),
8080
prompt: prompts.negative,
81-
style: prompts.negativeStyle,
81+
style: prompts.useMainPromptsForStyle ? prompts.negative : prompts.negativeStyle,
8282
});
8383
const negCondCollect = g.addNode({
8484
type: 'collect',

0 commit comments

Comments
 (0)