From 406a4bf9ffcaa7ce8da4bd1c06b5dfaf7dd27453 Mon Sep 17 00:00:00 2001 From: Ethanfel Date: Mon, 22 Jun 2026 17:48:37 +0200 Subject: [PATCH] feat(install): Missing rows offer Install 7d + Install --- js/nodes_stats.js | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/js/nodes_stats.js b/js/nodes_stats.js index 5f90741..0ab314b 100644 --- a/js/nodes_stats.js +++ b/js/nodes_stats.js @@ -408,14 +408,17 @@ function buildWorkflowTabContent({ disabled, missing }, trials) { html += ``; } if (missing.length) { - html += sectionHeader("Missing", "Not installed — install via ComfyUI Manager", "#e44"); + html += sectionHeader("Missing", "Not installed — install, optionally on a 7-day trial", "#e44"); html += ``; for (const m of missing) { html += ` - `; } html += `
${escapeHtml(m.type)} ${m.pkg ? escapeHtml(m.pkg) : "unknown"} - ${m.pkg ? `` : "—"} + + ${m.pkg + ? ` + ` + : "—"}
`;