Skip to content

Commit

Permalink
Fix frontend node tooltip error (#911)
Browse files Browse the repository at this point in the history
  • Loading branch information
christian-byrne authored Sep 22, 2024
1 parent 529e889 commit 290bf52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/graph/NodeTooltip.vue
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ const onIdle = () => {
[0, 0]
)
if (outputSlot !== -1) {
return showTooltip(nodeDef.output.all?.[outputSlot].tooltip)
return showTooltip(nodeDef.output.all?.[outputSlot]?.tooltip)
}
const widget = getHoveredWidget()
Expand Down

0 comments on commit 290bf52

Please sign in to comment.