From 81069dc3b827866d9e0f93690563de1e19ab640b Mon Sep 17 00:00:00 2001 From: rob Date: Wed, 1 May 2024 01:52:25 -0400 Subject: [PATCH] time scale fix --- app/views/report/dashboard.pug | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/report/dashboard.pug b/app/views/report/dashboard.pug index b147e6c..2b1c014 100644 --- a/app/views/report/dashboard.pug +++ b/app/views/report/dashboard.pug @@ -31,7 +31,7 @@ block view-content td.uk-table-expand= dayjs(day.date).format('dddd') td.uk-text-right.uk-text-nowrap.uk-table-shrink= (day.workSessionCount > 0) ? formatCount(day.workSessionCount) : '---' td.uk-text-right.uk-text-nowrap.uk-table-shrink= (day.hoursWorked > 0) ? numeral(day.hoursWorked).format('0.00') : '---' - td.uk-text-right.uk-text-nowrap.uk-table-shrink= (day.hoursWorked > 0) ? numeral(day.hoursWorked).format('0:00:00') : '---' + td.uk-text-right.uk-text-nowrap.uk-table-shrink= (day.hoursWorked > 0) ? numeral(day.hoursWorked * 3600).format('0:00:00') : '---' tfoot tr td.uk-table-expand TOTALS