From cc59034f49618bbace5cd502f2d76a6ee8c1bc43 Mon Sep 17 00:00:00 2001 From: Degradin Date: Sat, 18 Jan 2025 03:39:19 +0300 Subject: [PATCH] Update index.html --- public/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/index.html b/public/index.html index c275e8c..4f7e146 100644 --- a/public/index.html +++ b/public/index.html @@ -189,7 +189,7 @@ const warehouseDiv = document.getElementById("warehouse"); warehouseDiv.innerHTML = ""; const warehouseCapacity = warehouse.capacity; - const resources = Object.keys(warehouse).filter(key => key !== 'capacity'); + const resources = Object.keys(warehouse).filter(key => key !== 'capacity' && key !== 'createdAt' && key !== 'updatedAt'); resources.forEach(resource => { const amount = warehouse[resource]; const progress = (amount / warehouseCapacity) * 100;