diff --git a/baseTemplate/static/baseTemplate/custom-js/system-status.js b/baseTemplate/static/baseTemplate/custom-js/system-status.js index 63bd0016f..390cc9018 100644 --- a/baseTemplate/static/baseTemplate/custom-js/system-status.js +++ b/baseTemplate/static/baseTemplate/custom-js/system-status.js @@ -881,7 +881,7 @@ app.controller('dashboardStatsController', function ($scope, $http, $timeout) { $scope.errorSSHLogins = ''; function fetchSSHLogins() { $scope.loadingSSHLogins = true; - $http.get('/baseTemplate/getRecentSSHLogins').then(function (response) { + $http.get('/base/getRecentSSHLogins').then(function (response) { $scope.loadingSSHLogins = false; if (response.data && response.data.logins) { $scope.sshLogins = response.data.logins;