Skip to content

Commit 1b2ea1a

Browse files
authored
Merge pull request #288 from ioet/275-include-time-in-out
fix: #275 show time-in out for entries
2 parents 4279d7d + 4a5e40e commit 1b2ea1a

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/app/modules/time-entries/pages/time-entries.component.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
<thead class="thead-orange">
2121
<tr class="d-flex">
2222
<th class="col">Date</th>
23+
<th class="col">Time in - out</th>
2324
<th class="col">Duration</th>
2425
<th class="col">Ticket</th>
2526
<th class="col"></th>
@@ -31,6 +32,7 @@
3132
*ngFor="let entry of dataByMonth"
3233
>
3334
<td class="col"> {{ entry.start_date | date: 'dd/MM/yyyy' }} </td>
35+
<td class="col"> {{ entry.start_date | date: 'shortTime' }} - {{ entry.end_date | date: 'shortTime' }}</td>
3436
<td class="col"> {{ entry.end_date | substractDate: entry.start_date }} </td>
3537
<td class="col"> {{ entry.uri }} </td>
3638
<td class="col">

0 commit comments

Comments
 (0)