diff --git a/static/dashboard.js b/static/dashboard.js index bbe417a..fbc8d8b 100644 --- a/static/dashboard.js +++ b/static/dashboard.js @@ -262,11 +262,10 @@ function renderLeaderboard(id, data, nameKey, valKey, limit) { function update(d) { $('dot').className = 'dot'; $('statusTxt').textContent = 'Live'; - // SSL badge (show if 'ssl' checktype is enabled) + // SSL badge (always visible - PPF's signature feature) var sslBadge = $('sslBadge'); if (sslBadge) { - var hasSSL = d.checktypes && d.checktypes.indexOf('ssl') >= 0; - sslBadge.style.display = hasSSL ? 'inline-block' : 'none'; + sslBadge.style.display = 'inline-block'; } // Check type badges (multiple supported) var ctContainer = $('checktypeBadges');