From df4d3bb6e0ed5fb81e9053487e1ff12d5205b0e6 Mon Sep 17 00:00:00 2001 From: FreddleSpl0it <75116288+FreddleSpl0it@users.noreply.github.com> Date: Tue, 7 Oct 2025 11:41:57 +0200 Subject: [PATCH] [Web] Fix dashboard host stats --- data/web/js/site/dashboard.js | 1 + 1 file changed, 1 insertion(+) diff --git a/data/web/js/site/dashboard.js b/data/web/js/site/dashboard.js index 32c04b518..760e878f1 100644 --- a/data/web/js/site/dashboard.js +++ b/data/web/js/site/dashboard.js @@ -1345,6 +1345,7 @@ function update_stats(timeout=5){ window.fetch("/api/v1/get/status/host", {method:'GET',cache:'no-cache'}).then(function(response) { return response.json(); + }).then(function(data) { if (data){ // display table data $("#host_date").text(data.system_time);