diff --git a/resources/views/tasks/time_tracker_knockout.blade.php b/resources/views/tasks/time_tracker_knockout.blade.php index fdd1eead6b43..3b7f903c1afb 100644 --- a/resources/views/tasks/time_tracker_knockout.blade.php +++ b/resources/views/tasks/time_tracker_knockout.blade.php @@ -521,6 +521,7 @@ } self.age = ko.computed(function() { + model.clock(); // bind to the clock if (! self.time_log().length) { return ''; } @@ -640,6 +641,7 @@ }); self.age = ko.computed(function() { + model.clock(); // bind to the clock return moment.unix(self.startTime()).fromNow(); });