Skip to content

Commit 1b7c77a

Browse files
authored
Merge pull request #456 from ioet/448-fix-date-format-time-entries
fix: #448 updating pattern for dates in time-entries table
2 parents f99f42b + 7e16aaf commit 1b7c77a

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
@@ -29,7 +29,7 @@
2929
</thead>
3030
<tbody>
3131
<tr class="d-flex" *ngFor="let entry of dataByMonth">
32-
<td class="col">{{ entry.start_date | date: 'dd/MM/yyyy' }}</td>
32+
<td class="col">{{ entry.start_date | date: 'MM/dd/yyyy' }}</td>
3333
<td class="col">{{ entry.start_date | date: 'HH:mm' }} - {{ entry.end_date | date: 'HH:mm' }}</td>
3434
<td class="col">{{ entry.end_date | substractDate: entry.start_date }}</td>
3535
<td class="col">{{ entry.project_name }}</td>

0 commit comments

Comments
 (0)