From 58d83ae52f72e9d6c475e3b19b992ada1ba383c8 Mon Sep 17 00:00:00 2001 From: Username Date: Fri, 26 Dec 2025 21:37:37 +0100 Subject: [PATCH] dashboard: always show SSL badge --- static/dashboard.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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');