feat: align cloud batch count limit with server-side queue cap

Raises Comfy.QueueButton.BatchCountLimit on cloud from 32 to 100 to match the server-side MaxQueuedJobsPerUser cap (cloud/infrastructure/dynamicconfig/prod/config.json). Desktop default unchanged at 100.
This commit is contained in:
Glary-Bot
2026-05-03 06:17:48 +00:00
parent 7abd9d12c8
commit 5901099ce7

View File

@@ -659,7 +659,7 @@ export const CORE_SETTINGS: SettingParams[] = [
tooltip:
'The maximum number of tasks added to the queue at one button click',
type: 'number',
defaultValue: isCloud ? 32 : 100,
defaultValue: 100,
versionAdded: '1.3.5'
},
{