diff options
author | Jean-Baptiste Lievremont <jean-baptiste.lievremont@sonarsource.com> | 2014-11-04 10:34:50 +0100 |
---|---|---|
committer | Jean-Baptiste Lievremont <jean-baptiste.lievremont@sonarsource.com> | 2014-11-04 15:05:18 +0100 |
commit | a128cf14122b65557268a90e6f6873b14b4fc8ae (patch) | |
tree | 75f5771c1376586fa6df50bbbcbeca5407cbe727 /server/sonar-web/src/main/coffee/issues/facets-view.coffee | |
parent | e02bf2d08e32bdbcc95a7ef0645049cfb5728451 (diff) | |
download | sonarqube-a128cf14122b65557268a90e6f6873b14b4fc8ae.tar.gz sonarqube-a128cf14122b65557268a90e6f6873b14b4fc8ae.zip |
SONAR-5747 Replace componentRootUuids (modules) facet with projectUuids (project) facet
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, 1 insertions, 2 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 a36652b06a1..6ffd106f947 100644 --- a/server/sonar-web/src/main/coffee/issues/facets-view.coffee +++ b/server/sonar-web/src/main/coffee/issues/facets-view.coffee @@ -40,7 +40,7 @@ define [ when 'assignees' then AssigneeFacet when 'resolutions' then ResolutionFacet when 'creationDate' then CreationDateFacet - when 'componentRootUuids' then ProjectFacet + when 'projectUuids' then ProjectFacet when 'rules' then RuleFacet when 'actionPlans' then ActionPlanFacet when 'componentUuids' then ComponentFacet @@ -61,4 +61,3 @@ define [ enabledFacets = @collection.filter (model) -> model.get('enabled') enabledFacetIds = enabledFacets.map (model) -> model.id @options.app.state.set facets: enabledFacetIds - |