Skip to content

Commit 727c930

Browse files
committed
fix: #312 include activity and project names in time-entries list
1 parent 5f7f041 commit 727c930

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@
2222
<th class="col">Date</th>
2323
<th class="col">Time in - out</th>
2424
<th class="col">Duration</th>
25-
<th class="col">Ticket</th>
25+
<th class="col">Project</th>
26+
<th class="col">Activity</th>
2627
<th class="col"></th>
2728
</tr>
2829
</thead>
@@ -34,7 +35,8 @@
3435
<td class="col"> {{ entry.start_date | date: 'dd/MM/yyyy' }} </td>
3536
<td class="col"> {{ entry.start_date | date: 'shortTime' }} - {{ entry.end_date | date: 'shortTime' }}</td>
3637
<td class="col"> {{ entry.end_date | substractDate: entry.start_date }} </td>
37-
<td class="col"> {{ entry.uri }} </td>
38+
<td class="col"> {{ entry.project_name }} </td>
39+
<td class="col"> {{ entry.activity_name }} </td>
3840
<td class="col">
3941
<button
4042
class="btn btn-sm btn-primary"

0 commit comments

Comments
 (0)