Show node id name in node searchbox (#703)

* Show node unique name in node searchbox

* nit
This commit is contained in:
Chenlei Hu
2024-09-01 18:12:27 -04:00
committed by GitHub
parent 14da8433f7
commit a4a298924e
2 changed files with 21 additions and 3 deletions

View File

@@ -107,6 +107,15 @@ export const useSettingStore = defineStore('setting', {
defaultValue: true
})
app.ui.settings.addSetting({
id: 'Comfy.NodeSearchBoxImpl.ShowIdName',
category: ['Comfy', 'Node Search Box', 'ShowIdName'],
name: 'Show node id name in search results',
tooltip: 'Only applies to the default implementation',
type: 'boolean',
defaultValue: false
})
app.ui.settings.addSetting({
id: 'Comfy.Sidebar.Location',
category: ['Comfy', 'Sidebar', 'Location'],