Mark show missing models warning as experimental (#670)

* Mark show missing models warning as experimental

* nit
This commit is contained in:
Chenlei Hu
2024-08-28 16:22:40 -04:00
committed by GitHub
parent 986827cb91
commit fb5bb57b0d
2 changed files with 4 additions and 1 deletions

View File

@@ -39,6 +39,8 @@ test.describe('Missing models warning', () => {
test('Should display a warning when missing models are found', async ({
comfyPage
}) => {
await comfyPage.setSetting('Comfy.Workflow.ShowMissingModelsWarning', true)
// The fake_model.safetensors is served by
// https://github.com/Comfy-Org/ComfyUI_devtools/blob/main/__init__.py
await comfyPage.loadWorkflow('missing_models')

View File

@@ -188,7 +188,8 @@ export const useSettingStore = defineStore('setting', {
id: 'Comfy.Workflow.ShowMissingModelsWarning',
name: 'Show missing models warning',
type: 'boolean',
defaultValue: true
defaultValue: false,
experimental: true
})
app.ui.settings.addSetting({