FIX: remove category filter from page view reports

This commit is contained in:
Arpit Jalan
2016-05-09 13:16:09 +05:30
parent 9d737d894d
commit b4a8cb415e
2 changed files with 3 additions and 6 deletions

View File

@@ -28,7 +28,7 @@ export default Ember.Controller.extend({
@computed('model.type')
showCategoryOptions(modelType) {
return !modelType.match(/_private_messages$/);
return !modelType.match(/_private_messages$/) && !modelType.match(/^page_view_/);
},
@computed('model.type')