diff --git a/src/main/webapp/scripts/directives/navbar.js b/src/main/webapp/scripts/directives/navbar.js index d0910312f..64ee7ae58 100644 --- a/src/main/webapp/scripts/directives/navbar.js +++ b/src/main/webapp/scripts/directives/navbar.js @@ -398,8 +398,9 @@ pinpointApp.directive('navbar', [ 'cfg', '$rootScope', '$http', if (scope.timeLeft === 0) { scope.update(); scope.timeLeft = scope.timeCountDown; + } else { + $timeout(startUpdate, 1000); } - $timeout(startUpdate, 1000); } };