Add stopped state

This commit is contained in:
Girish Ramakrishnan
2020-10-06 13:01:01 -07:00
parent 4274b8f459
commit b14828e8e1
2 changed files with 4 additions and 2 deletions

View File

@@ -11,7 +11,8 @@ angular.module('Application').controller('AppsController', ['$scope', '$timeout'
$scope.states = [
{ state: '', label: 'All States' },
{ state: 'running', label: 'Running' },
{ state: 'not_running', label: 'Not Running' }
{ state: 'stopped', label: 'Stopped' },
{ state: 'not_responding', label: 'Not Responding' }
];
$scope.selectedState = $scope.states[0];
$scope.selectedTags = [];