From cfa491c47e71c197fac24b4141e44a5166344885 Mon Sep 17 00:00:00 2001 From: m Date: Thu, 2 Apr 2026 10:42:42 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20billableaua=20=E2=80=94=20show=20missed?= =?UTF-8?q?=20day=20impact=20in=20minutes?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sites/billableaua.de/index.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/sites/billableaua.de/index.html b/sites/billableaua.de/index.html index f5a75c8..97a25b2 100644 --- a/sites/billableaua.de/index.html +++ b/sites/billableaua.de/index.html @@ -421,14 +421,14 @@ '' + perDayStr + ' Stunden billable pro Tag.' + verdict + '' + - 'Ein Tag krank? Dann sind es ' + - (workingDays > 1 ? (hours / (workingDays - 1)).toFixed(1).replace('.', ',') : '∞') + - ' Stunden auf ' + (workingDays - 1) + ' Tage.' + + 'Ein Tag krank? ' + + (workingDays > 1 ? Math.round(hours / (workingDays - 1) * 60) : '∞') + + ' Minuten pro Tag.' + ' Noch ein Tag? ' + - (workingDays > 2 ? (hours / (workingDays - 2)).toFixed(1).replace('.', ',') : '∞') + + (workingDays > 2 ? Math.round(hours / (workingDays - 2) * 60) : '∞') + '.' + ' Eine Woche? ' + - (workingDays > 5 ? (hours / (workingDays - 5)).toFixed(1).replace('.', ',') : '∞') + + (workingDays > 5 ? Math.round(hours / (workingDays - 5) * 60) : '∞') + '.' + '
Jeder verpasste Tag erhöht den Druck auf alle anderen.
'; }