Old value node migrations

This commit is contained in:
Adam
2025-07-26 13:58:41 -07:00
parent 54097ebcb5
commit e0f317e67e
9 changed files with 258 additions and 137 deletions
@@ -54,7 +54,10 @@
// Quick and dirty hack to alias "Layer" to "Merge" in the search
const layerAliasMatch = node.name === "Merge" && "layer".includes(term);
return nameMatch || categoryMatch || layerAliasMatch;
// Alias "Identity" to "Pass Through"
const identityAliasMatch = node.name === "Pass Through" && "identity".includes(term);
return nameMatch || categoryMatch || layerAliasMatch || identityAliasMatch;
});
}