Browse Source

time scale fix

develop
Rob Colbert 12 months ago
parent
commit
81069dc3b8
  1. 2
      app/views/report/dashboard.pug

2
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

Loading…
Cancel
Save