We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7693ae commit 429ab6cCopy full SHA for 429ab6c
src/components/dialog/content/manager/infoPanel/InfoPanelMultiItem.vue
@@ -51,7 +51,11 @@ const getPackNodes = async (pack: components['schemas']['Node']) => {
51
if (!pack.latest_version?.version) return []
52
const nodeDefs = await getNodeDefs.call({
53
packId: pack.id,
54
- version: pack.latest_version?.version
+ version: pack.latest_version?.version,
55
+ // Fetch all nodes.
56
+ // TODO: Render all nodes previews and handle pagination.
57
+ // For determining length, use the `totalNumberOfPages` field of response
58
+ limit: 8192
59
})
60
return nodeDefs?.comfy_nodes ?? []
61
}
0 commit comments