diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2014-11-06 12:24:44 +0100 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2014-11-06 12:24:52 +0100 |
commit | 6deae83daebb117e8ae49b58c72fb0ce8d0043b7 (patch) | |
tree | 56d52e5f48b6f0bb2996175b38dc8302c7d8c54c /server/sonar-web/src/main/coffee/issues/facets-view.coffee | |
parent | b7e3c205a224d06c418f1975693df36867684091 (diff) | |
download | sonarqube-6deae83daebb117e8ae49b58c72fb0ce8d0043b7.tar.gz sonarqube-6deae83daebb117e8ae49b58c72fb0ce8d0043b7.zip |
SONAR-5718 Add module criteria, update widgets
Diffstat (limited to 'server/sonar-web/src/main/coffee/issues/facets-view.coffee')
-rw-r--r-- | server/sonar-web/src/main/coffee/issues/facets-view.coffee | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/server/sonar-web/src/main/coffee/issues/facets-view.coffee b/server/sonar-web/src/main/coffee/issues/facets-view.coffee index 6ffd106f947..9ebd69988de 100644 --- a/server/sonar-web/src/main/coffee/issues/facets-view.coffee +++ b/server/sonar-web/src/main/coffee/issues/facets-view.coffee @@ -5,6 +5,7 @@ define [ 'issues/facets/severity-facet' 'issues/facets/status-facet' 'issues/facets/project-facet' + 'issues/facets/module-facet' 'issues/facets/assignee-facet' 'issues/facets/rule-facet' 'issues/facets/resolution-facet' @@ -19,6 +20,7 @@ define [ SeverityFacet StatusFacet ProjectFacet + ModuleFacet AssigneeFacet RuleFacet ResolutionFacet @@ -41,6 +43,7 @@ define [ when 'resolutions' then ResolutionFacet when 'creationDate' then CreationDateFacet when 'projectUuids' then ProjectFacet + when 'componentRootUuids' then ModuleFacet when 'rules' then RuleFacet when 'actionPlans' then ActionPlanFacet when 'componentUuids' then ComponentFacet |