Skip to content

Commit

Permalink
Fix port visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
SorsOps committed Dec 17, 2024
1 parent cc85d3b commit 52d5676
Show file tree
Hide file tree
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
Expand Up @@ -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} />
))}
Expand Down

0 comments on commit 52d5676

Please sign in to comment.