function updateConsumption() {
const weight = document.getElementById('editWeight').value;
const consumption = document.getElementById('editConsumption').value;
if (weight) {
consumption = weight * 1.05;
}
// Если ничего нет
else {
consumption = '';
}
}