We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4279d7d + 4a5e40e commit 1b2ea1aCopy full SHA for 1b2ea1a
src/app/modules/time-entries/pages/time-entries.component.html
@@ -20,6 +20,7 @@
20
<thead class="thead-orange">
21
<tr class="d-flex">
22
<th class="col">Date</th>
23
+ <th class="col">Time in - out</th>
24
<th class="col">Duration</th>
25
<th class="col">Ticket</th>
26
<th class="col"></th>
@@ -31,6 +32,7 @@
31
32
*ngFor="let entry of dataByMonth"
33
>
34
<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>
36
<td class="col"> {{ entry.end_date | substractDate: entry.start_date }} </td>
37
<td class="col"> {{ entry.uri }} </td>
38
<td class="col">
0 commit comments