Skip to content

Commit 4ea7a90

Browse files
committed
fix: #397 display time-in and time-out columns
1 parent 45c5f20 commit 4ea7a90

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/app/modules/reports/components/time-entries-table/time-entries-table.component.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
<th class="col md-col">User email</th>
88
<th class="col sm-col">Date</th>
99
<th class="col sm-col">Duration (hours)</th>
10+
<th class="col sm-col">Time in</th>
11+
<th class="col sm-col">Time out</th>
1012
<th class="col md-col">Project</th>
1113
<th class="col lg-col">Project ID</th>
1214
<th class="col md-col">Customer</th>
@@ -26,6 +28,8 @@
2628
<td class="col md-col multiline-col"> {{ entry.owner_email }} </td>
2729
<td class="col sm-col"> {{ entry.start_date | date: 'MM/dd/yyyy' }} </td>
2830
<td class="col sm-col"> {{ entry.end_date | substractDate: entry.start_date }} </td>
31+
<td class="col sm-col"> {{ entry.start_date | date: 'HH:mm' }} </td>
32+
<td class="col sm-col"> {{ entry.end_date | date: 'HH:mm' }} </td>
2933
<td class="col md-col"> {{ entry.project_name }} </td>
3034
<td class="col md-col"> {{ entry.project_id }} </td>
3135
<td class="col md-col"> {{ entry.customer_name }} </td>

0 commit comments

Comments
 (0)