Skip to content

Commit

Permalink
Merge pull request #8308 from ever-co/feat/8307-display-dates
Browse files Browse the repository at this point in the history
[Enhancement] Display of dates on the timesheet page
  • Loading branch information
evereq authored Oct 1, 2024
2 parents dbecbfd + c30240e commit b0bde6c
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
<div class="mt-2 small">
<span *ngIf="log?.task; else noToDo" [nbTooltip]="log?.task?.title">
<strong>{{ 'TIMESHEET.TODO' | translate }}:</strong>
{{ log?.task?.title | truncate : 50 }}
{{ log?.task?.title | truncate : 40 }}
</span>
<ng-template #noToDo>
<span>{{ 'TIMESHEET.NO_TODO' | translate }}</span>
Expand Down Expand Up @@ -137,6 +137,13 @@
{{ log.duration | durationFormat }}
</div>
<div class="col-2">
<div class="">
{{
log.startedAt
| utcToTimezone : filters?.timeZone
| date : 'MMMM d, yyyy'
}}
</div>
<span class="start-timer">
{{
log.startedAt
Expand Down

0 comments on commit b0bde6c

Please sign in to comment.