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 71fa71e commit f2de9b0Copy full SHA for f2de9b0
src/services/nodeSearchService.ts
@@ -121,13 +121,7 @@ export class NodeSearchService {
121
includeScore: true,
122
threshold: 0.3,
123
shouldSort: true,
124
- useExtendedSearch: true,
125
- // Sort by score first, then by length of the display name, then by index
126
- // https://github.com/Comfy-Org/ComfyUI_frontend/issues/562#issuecomment-2299738393
127
- sortFn: (a, b) =>
128
- Math.abs(a.score - b.score) > 0.01
129
- ? a.score - b.score
130
- : a.item[1]['v']['length'] - b.item[1]['v']['length'] || a.idx - b.idx
+ useExtendedSearch: true
131
})
132
133
const filterSearchOptions = {
0 commit comments