Skip to content

Commit

Permalink
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/cold-teachers-shout.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@tokens-studio/graph-editor": patch
---

Fix bug with visibility on ports
Original file line number Diff line number Diff line change
@@ -146,7 +146,7 @@ export const PortArray = observer(({ ports, hideNames }: IPortArray) => {
return (
<>
{entries
.filter((x) => x.visible || x.isConnected)
.filter((x) => x.visible != false || x.isConnected)
.map((input) => (
<InputHandle port={input} hideName={hideNames} />
))}

0 comments on commit 3f12ab0

Please sign in to comment.