Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Nit
to

add

more

newlines
  • Loading branch information
AustinMroz committed Dec 17, 2025
commit b3f965c5d2ed916f204dbc85b03aa384222b469c
2 changes: 2 additions & 0 deletions src/stores/nodeDefStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -368,9 +368,11 @@ export const useNodeDefStore = defineStore('nodeDef', () => {
const widget = node.widgets?.find((w) => w.name === widgetName)
//TODO: resolve spec for linked
if (!widget || !isProxyWidget(widget)) return undefined

const { nodeId, widgetName: subWidgetName } = widget._overlay
const subNode = node.subgraph.getNodeById(nodeId)
if (!subNode) return undefined

return getInputSpecForWidget(subNode, subWidgetName)
}

Expand Down