diff --git a/src/templates/index.html b/src/templates/index.html
index 1097d41..51a988b 100644
--- a/src/templates/index.html
+++ b/src/templates/index.html
@@ -198,7 +198,7 @@ function updateRowWithNewData(row, weight, nutritionData) {
const portions = portionsInput.value ? parseInt(portionsInput.value, 10) : 1;
// Teilen des Gewichts durch die Anzahl der Portionen und Aufrunden
- weight = schulrunden(Math.ceil(weight / portions));
+ weight = schulrunden(weight / portions);
fetch(`/add_lm?food=${encodeURIComponent(food)}&weight=${encodeURIComponent(weight)}`)