From e57fd2e81e942c62af6f37e51bfd26b8b972623f Mon Sep 17 00:00:00 2001 From: "Jokob @NetAlertX" <96159884+jokob-sk@users.noreply.github.com> Date: Sat, 28 Feb 2026 01:02:21 +0000 Subject: [PATCH] fix: update body text color in dark theme and remove unnecessary console log --- front/css/system-dark-patch.css | 2 +- front/js/ui_components.js | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/front/css/system-dark-patch.css b/front/css/system-dark-patch.css index 353c1679..06121b02 100755 --- a/front/css/system-dark-patch.css +++ b/front/css/system-dark-patch.css @@ -37,7 +37,7 @@ body, .bg-yellow, .callout.callout-warning, .alert-warning, .label-warning, .modal-warning .modal-body { background-color: #353c42 !important; - color: #bec5cb !important; + color: #ffffff !important; } h4 { color: #44def1; diff --git a/front/js/ui_components.js b/front/js/ui_components.js index 51425a9c..671c9ab9 100755 --- a/front/js/ui_components.js +++ b/front/js/ui_components.js @@ -744,9 +744,6 @@ function getStatusBadgeParts(devPresentLastScan, devAlertDown, devFlapping, devM let status = 'unknown'; let cssText = ''; - console.log(devFlapping); - - if (devPresentLastScan == 1 && devFlapping == 0) { css = 'bg-green text-white statusOnline'; cssText = 'text-green';