fix(ui): linked negative style prompt not passed in

Closes #8256
This commit is contained in:
psychedelicious
2025-07-12 00:15:12 +10:00
parent 97439c1daa
commit 6f02712719

View File

@@ -78,7 +78,7 @@ export const buildSDXLGraph = async (arg: GraphBuilderArg): Promise<GraphBuilder
type: 'sdxl_compel_prompt',
id: getPrefixedId('neg_cond'),
prompt: prompts.negative,
style: prompts.negativeStyle,
style: prompts.useMainPromptsForStyle ? prompts.negative : prompts.negativeStyle,
});
const negCondCollect = g.addNode({
type: 'collect',