diff --git a/src/components/dialog/content/manager/infoPanel/InfoPanelMultiItem.vue b/src/components/dialog/content/manager/infoPanel/InfoPanelMultiItem.vue index e5e4bc343..a4bd12c0b 100644 --- a/src/components/dialog/content/manager/infoPanel/InfoPanelMultiItem.vue +++ b/src/components/dialog/content/manager/infoPanel/InfoPanelMultiItem.vue @@ -51,7 +51,11 @@ const getPackNodes = async (pack: components['schemas']['Node']) => { if (!pack.latest_version?.version) return [] const nodeDefs = await getNodeDefs.call({ packId: pack.id, - version: pack.latest_version?.version + version: pack.latest_version?.version, + // Fetch all nodes. + // TODO: Render all nodes previews and handle pagination. + // For determining length, use the `totalNumberOfPages` field of response + limit: 8192 }) return nodeDefs?.comfy_nodes ?? [] }