remove stupid console log and fix removal of server from cookie

This commit is contained in:
Raven Scott 2024-11-30 03:57:22 -05:00
parent 8699a265ae
commit 746dba4394

4
app.js
View File

@ -490,6 +490,9 @@ function disconnectConnection(topicId, connectionItem) {
// Remove from global connections
delete connections[topicId];
// Save the updated connections to cookies
saveConnections();
// Remove the connection item from the UI
if (connectionItem) {
connectionList.removeChild(connectionItem);
@ -854,7 +857,6 @@ function updateContainerStats(stats) {
}
function updateStatsUI(row, stats) {
console.log("HAHHAHAHAHAHHAHA " + JSON.stringify(stats, null, 2));
requestIdleCallback(() => {
row.querySelector('.cpu').textContent = stats.cpu.toFixed(2) || '0.00';
row.querySelector('.memory').textContent = (stats.memory / (1024 * 1024)).toFixed(2) || '0.00';