mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-04-29 18:52:19 +00:00
Fix sorting on type filter + empty query (#880)
* Fix sorting on type filter + empty query * nit * nit
This commit is contained in:
@@ -51,7 +51,11 @@ const EXAMPLE_NODE_DEFS: ComfyNodeDefImpl[] = [
|
||||
category: 'latent/batch',
|
||||
output_node: false
|
||||
}
|
||||
].map((nodeDef) => plainToClass(ComfyNodeDefImpl, nodeDef))
|
||||
].map((nodeDef) => {
|
||||
const def = plainToClass(ComfyNodeDefImpl, nodeDef)
|
||||
def['postProcessSearchScores'] = (s) => s
|
||||
return def
|
||||
})
|
||||
|
||||
describe('nodeSearchService', () => {
|
||||
it('searches with input filter', () => {
|
||||
|
||||
Reference in New Issue
Block a user