diff --git a/src/js/index.js b/src/js/index.js index 137de30e6..1069e1993 100644 --- a/src/js/index.js +++ b/src/js/index.js @@ -110,19 +110,6 @@ app.config(['$routeProvider', function ($routeProvider) { }).otherwise({ redirectTo: '/'}); }]); -app.filter('installError', function () { - return function (app) { - if (!app) return false; - if (app.installationState === ISTATES.ERROR) return true; - if (app.installationState === ISTATES.INSTALLED) { - // app.health can also be null to indicate insufficient data - if (app.health === HSTATES.UNHEALTHY || app.health === HSTATES.ERROR || app.health === HSTATES.DEAD) return true; - } - - return false; - }; -}); - app.filter('activeTask', function () { return function (app) { if (!app) return false; diff --git a/src/views/apps.html b/src/views/apps.html index 94c1a95e6..bd849ded8 100644 --- a/src/views/apps.html +++ b/src/views/apps.html @@ -230,7 +230,7 @@