set poll frequency same as the apps.js

This commit is contained in:
Girish Ramakrishnan
2020-06-08 20:26:25 -07:00
parent dce865c3cb
commit 1e82774460
+1 -1
View File
@@ -1567,7 +1567,7 @@ angular.module('Application').controller('AppController', ['$scope', '$location'
$scope[$scope.view].show(); // initialize now that we have all the values
var refreshTimer = $interval(function () { refreshApp($scope.app.id); }, 2000); // call with inline function to avoid iteration argument passed see $interval docs
var refreshTimer = $interval(function () { refreshApp($scope.app.id); }, 5000); // call with inline function to avoid iteration argument passed see $interval docs
$scope.$on('$destroy', function () {
$interval.cancel(refreshTimer);
});