Skip to content

Commit 4a5e40e

Browse files
committed
fix: #275 formatting hour
1 parent 0a80ddc commit 4a5e40e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
*ngFor="let entry of dataByMonth"
3333
>
3434
<td class="col"> {{ entry.start_date | date: 'dd/MM/yyyy' }} </td>
35-
<td class="col"> {{ entry.start_date | date: 'hh:mm' }} - {{ entry.end_date | date: 'hh:mm' }}</td>
35+
<td class="col"> {{ entry.start_date | date: 'shortTime' }} - {{ entry.end_date | date: 'shortTime' }}</td>
3636
<td class="col"> {{ entry.end_date | substractDate: entry.start_date }} </td>
3737
<td class="col"> {{ entry.uri }} </td>
3838
<td class="col">

0 commit comments

Comments
 (0)