Skip to content

Commit 408a318

Browse files
Merge ac719c7 into ebb65c3
2 parents ebb65c3 + ac719c7 commit 408a318

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/app/modules/reports/components/time-entries-table/time-entries-table.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<th class="hidden-col">ID</th>
1111
<th class="col md-col">User email</th>
1212
<th class="col sm-col">Date</th>
13-
<th class="col x-sm-col" title="Duration (hours)">Duration (hours)</th>
13+
<th class="col sm-col" title="Duration (hours)">Duration</th>
1414
<th class="col x-sm-col" title="Time in">Time in</th>
1515
<th class="col x-sm-col" title="Time out">Time out</th>
1616
<th class="col md-col">Project</th>
@@ -31,7 +31,7 @@
3131
<td class="col sm-col">
3232
{{ entry.start_date | date: 'MM/dd/yyyy' }}
3333
</td>
34-
<td class="col x-sm-col">
34+
<td class="col sm-col">
3535
{{ entry.end_date | substractDate: entry.start_date }}
3636
</td>
3737
<td class="col x-sm-col">{{ entry.start_date | date: 'HH:mm' }}</td>

src/app/modules/users/components/users-list/users-list.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@
77
[dtOptions]="dtOptions">
88
<thead class="thead-blue">
99
<tr class="d-flex flex-wrap">
10-
<th class="col-4">User Email</th>
1110
<th class="col-5">Names</th>
11+
<th class="col-4">User Email</th>
1212
<th class="col-3">Groups</th>
1313
</tr>
1414
</thead>
1515
<app-loading-bar *ngIf="isLoading$ | async"></app-loading-bar>
1616
<tbody>
1717
<tr class="d-flex flex-wrap" *ngFor="let user of users">
18-
<td class="col-4 text-break">{{ user.email }}</td>
1918
<td class="col-5 text-break">{{ user.name }}</td>
19+
<td class="col-4 text-break">{{ user.email }}</td>
2020
<td class="col-3 text-center">
2121
<ui-switch
2222
size="small"

0 commit comments

Comments
 (0)