Skip to content

Commit

Permalink
#343 Filter deleted observables from statistics page
Browse files Browse the repository at this point in the history
Conflicts:
	ui/app/views/directives/charts/chart.html
  • Loading branch information
nadouani authored and To-om committed Oct 23, 2017
1 parent 01ef4c0 commit 7a3c3b4
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions ui/app/scripts/controllers/StatisticsCtrl.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,8 @@
type: 'case_artifact',
field: 'dataType',
dateField: 'startDate',
tagsField: 'tags'
tagsField: 'tags',
filter: {status: 'Ok'}
};

$scope.observableByIoc = {
Expand All @@ -140,7 +141,8 @@
names: {
'0': 'NOT IOC',
'1': 'IOC'
}
},
filter: {status: 'Ok'}
};

$scope.observableOverTime = {
Expand All @@ -154,7 +156,8 @@
},
types: {
startDate: 'bar'
}
},
filter: {status: 'Ok'}
};

$scope.setTagsAggregator = function(aggregator) {
Expand Down

0 comments on commit 7a3c3b4

Please sign in to comment.