Skip to content

Commit 0a13b4b

Browse files
committed
feat: add animation to time tracking history
1 parent 8a27f57 commit 0a13b4b

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

app-src/scripts/agenda-and-history/time-tracking-history/time-tracking-history-d.html

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,15 @@
2929
<strong ng-bind="worklogForDay.timeSpent|duration"></strong>
3030
</div>
3131

32-
<table class="task-summary-table"
33-
ng-if="worklogForDay.isVisible">
34-
<tr ng-repeat="logEntry in worklogForDay.entries track by logEntry.task.id">
35-
<td ng-bind="logEntry.task.title"></td>
36-
<td ng-bind="logEntry.task.timeSpentOnDay[worklogForDay.dateStr] |duration"></td>
37-
</tr>
38-
</table>
32+
<div class="ani-slide-up-down"
33+
ng-if="worklogForDay.isVisible">
34+
<table class="task-summary-table">
35+
<tr ng-repeat="logEntry in worklogForDay.entries track by logEntry.task.id">
36+
<td ng-bind="logEntry.task.title"></td>
37+
<td ng-bind="logEntry.task.timeSpentOnDay[worklogForDay.dateStr] |duration"></td>
38+
</tr>
39+
</table>
40+
</div>
3941
</div>
4042
</div>
4143
</div>

0 commit comments

Comments
 (0)