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;