Allow skipping workflow validation (#355)

This commit is contained in:
Chenlei Hu
2024-08-10 09:49:12 -04:00
committed by GitHub
parent e1bc2708d3
commit d6c304690c
2 changed files with 15 additions and 2 deletions

View File

@@ -56,6 +56,13 @@ export const useSettingStore = defineStore('setting', {
this.settingValues[id] = value
}
this.settings = settings.settingsParamLookup
app.ui.settings.addSetting({
id: 'Comfy.Validation.Workflows',
name: 'Validate workflows',
type: 'boolean',
defaultValue: true
})
},
set(key: string, value: any) {