diff --git a/hbd/server/templates/plugins.html b/hbd/server/templates/plugins.html index ab6d577..b553bcd 100644 --- a/hbd/server/templates/plugins.html +++ b/hbd/server/templates/plugins.html @@ -1347,6 +1347,11 @@ document.querySelectorAll('.host-card:not(.collapsed)').forEach(card => { const hostname = card.dataset.hostname; + fetchHostInfo(hostname).then(data => { + infoCache[hostname] = data; + renderInfoSection(hostname, data); + }).catch(() => {}); + card.querySelectorAll('.plugin-accordion:not(.collapsed)').forEach(acc => { const pname = acc.dataset.plugin; if (!GLANCE_PLUGINS.includes(pname)) {