From bb7b6d6f3c3b70a12915b77fd8f6649e595b6e50 Mon Sep 17 00:00:00 2001 From: Ian Renton Date: Thu, 23 Oct 2025 15:47:35 +0100 Subject: [PATCH] Remove console.log --- webassets/js/alerts.js | 1 - 1 file changed, 1 deletion(-) diff --git a/webassets/js/alerts.js b/webassets/js/alerts.js index 2ee2b09..3bc9223 100644 --- a/webassets/js/alerts.js +++ b/webassets/js/alerts.js @@ -126,7 +126,6 @@ function addAlertRowsToTable(tbody, alerts) { // Get times for the alert, and convert to local time if necessary. var start_time_utc = moment.unix(a["start_time"]).utc(); var start_time_local = start_time_utc.clone().local(); - console.log(a["dx_calls"]) start_time = useLocalTime ? start_time_local : start_time_utc; var end_time_utc = moment.unix(a["end_time"]).utc(); var end_time_local = end_time_utc.clone().local();