Remove already hidden task stop button

This commit is contained in:
Johannes Zellner
2020-03-26 00:19:50 +01:00
parent 128704400f
commit da9d634b83
2 changed files with 0 additions and 10 deletions
-7
View File
@@ -1209,13 +1209,6 @@ angular.module('Application').controller('AppController', ['$scope', '$location'
});
},
stopAppTask: function (taskId) {
Client.stopTask(taskId, function (error) {
// we can ignore a call trying to cancel an already done task
if (error && error.statusCode !== 409) Client.error(error);
});
},
restartBusy: false,
restartApp: function () {
$scope.repair.restartBusy = true;