We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d02b074 commit f0f8674Copy full SHA for f0f8674
src/components/graph/GraphCanvas.vue
@@ -33,7 +33,7 @@ const nodeSearchEnabled = computed<boolean>(
33
() => settingStore.get('Comfy.NodeSearchBoxImpl') === 'default'
34
)
35
watch(nodeSearchEnabled, (newVal) => {
36
- comfyApp.canvas.allow_searchbox = !newVal
+ if (comfyApp.canvas) comfyApp.canvas.allow_searchbox = !newVal
37
})
38
39
let dropTargetCleanup = () => {}
0 commit comments