From ad961dedc25b4eba54ace35b1ccb3caafd1216dc Mon Sep 17 00:00:00 2001 From: Roby Date: Mon, 27 Apr 2026 01:09:44 +0200 Subject: [PATCH] update timeout --- templates/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/index.html b/templates/index.html index 197fbba..b73a679 100644 --- a/templates/index.html +++ b/templates/index.html @@ -800,7 +800,7 @@ let timeSinceTx = Date.now() - (parseInt(cardDiv.dataset.lastTx) || 0); // Accendi se in TX, OPPURE se in Hang Time (ma spegni a forza dopo 30 secondi di inattività) - let showActiveColor = isTx || (!isIdle && timeSinceTx < 30000); + let showActiveColor = isTx || (!isIdle && timeSinceTx < 180000); cardDiv.style.setProperty('border-top-color', showActiveColor ? activeModeColor : "var(--border-color)", 'important'); // --- FINE LOGICA ---