Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix: #448 updating pattern for data in time-entries table
  • Loading branch information
enriquezrene committed Jul 1, 2020
commit 7e16aaf097e690d66da38e91fe473eed9690b322
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
</thead>
<tbody>
<tr class="d-flex" *ngFor="let entry of dataByMonth">
<td class="col">{{ entry.start_date | date: 'dd/MM/yyyy' }}</td>
<td class="col">{{ entry.start_date | date: 'MM/dd/yyyy' }}</td>
<td class="col">{{ entry.start_date | date: 'HH:mm' }} - {{ entry.end_date | date: 'HH:mm' }}</td>
<td class="col">{{ entry.end_date | substractDate: entry.start_date }}</td>
<td class="col">{{ entry.project_name }}</td>
Expand Down