rename passthrough

This commit is contained in:
Adam
2025-07-26 13:58:42 -07:00
parent faf8dedb1b
commit 84b3c90dc8
2 changed files with 4 additions and 4 deletions
@@ -54,8 +54,8 @@
// Quick and dirty hack to alias "Layer" to "Merge" in the search
const layerAliasMatch = node.name === "Merge" && "layer".includes(term);
// Alias "Identity" to "Pass Through"
const identityAliasMatch = node.name === "Pass Through" && "identity".includes(term);
// Alias "Identity" to "Passthrough"
const identityAliasMatch = node.name === "Passthrough" && "identity".includes(term);
return nameMatch || categoryMatch || layerAliasMatch || identityAliasMatch;
});