Skip to content

Commit

Permalink
#53 Fix observable select all when cortex is unavailable
Browse files Browse the repository at this point in the history
  • Loading branch information
nadouani committed Jan 9, 2017
1 parent e4cccca commit f013958
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions ui/app/scripts/controllers/case/CaseObservablesCtrl.js
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,10 @@
$scope.artifactList.Action = 'main';
$scope.artifactList.isCollapsed = true;
$scope.artifactList.ttags = [];
$scope.analyzersList = {};
$scope.analyzersList = {
active: {},
datatypes: {}
};
$scope.selection = {};

//
Expand Down Expand Up @@ -568,7 +571,7 @@
}));
})
.then(function () {
AlertSrv.log('Analyzers has been successfully started for observable: ' + artifactName, 'success');
AlertSrv.log('Analyzers has been successfully started for observable: ' + artifactName, 'success');
});
};

Expand Down

0 comments on commit f013958

Please sign in to comment.