aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web
diff options
context:
space:
mode:
authorStas Vilchik <vilchiks@gmail.com>2015-06-22 13:14:43 +0200
committerStas Vilchik <vilchiks@gmail.com>2015-06-22 13:14:49 +0200
commit2bd5350cb071bb3fb47a0ab5a11b6324e9620953 (patch)
treeafa7cde5243284c6bec98b912be8263b00993d94 /server/sonar-web
parent52cc995fc8b9af6b66b2f313d9048481345fc6f1 (diff)
downloadsonarqube-2bd5350cb071bb3fb47a0ab5a11b6324e9620953.tar.gz
sonarqube-2bd5350cb071bb3fb47a0ab5a11b6324e9620953.zip
SONAR-5851 remove "all rules" exporter
Diffstat (limited to 'server/sonar-web')
-rw-r--r--server/sonar-web/src/main/js/apps/quality-profiles/templates/quality-profiles-profile-details.hbs29
1 files changed, 14 insertions, 15 deletions
diff --git a/server/sonar-web/src/main/js/apps/quality-profiles/templates/quality-profiles-profile-details.hbs b/server/sonar-web/src/main/js/apps/quality-profiles/templates/quality-profiles-profile-details.hbs
index 40d3b73153b..2e221c27c31 100644
--- a/server/sonar-web/src/main/js/apps/quality-profiles/templates/quality-profiles-profile-details.hbs
+++ b/server/sonar-web/src/main/js/apps/quality-profiles/templates/quality-profiles-profile-details.hbs
@@ -34,21 +34,20 @@
{{/notEmpty}}
</div>
- <div class="column-third" id="quality-profile-permalinks">
- <header class="page-header">
- <h3 class="page-title">{{t 'permalinks'}}</h3>
- </header>
- <ul class="list-inline">
- <li>
- <a href="{{exporterUrl this null}}" target="_blank"><i class="icon-detach"></i>&nbsp;{{t 'quality_profiles.export_all_rules'}}</a>
- </li>
- {{#each exporters}}
- <li>
- <a href="{{exporterUrl ../this key}}" target="_blank"><i class="icon-detach"></i>&nbsp;{{name}}</a>
- </li>
- {{/each}}
- </ul>
- </div>
+ {{#notEmpty exporters}}
+ <div class="column-third" id="quality-profile-permalinks">
+ <header class="page-header">
+ <h3 class="page-title">{{t 'permalinks'}}</h3>
+ </header>
+ <ul class="list-inline">
+ {{#each exporters}}
+ <li>
+ <a href="{{exporterUrl ../this key}}" target="_blank"><i class="icon-detach"></i>&nbsp;{{name}}</a>
+ </li>
+ {{/each}}
+ </ul>
+ </div>
+ {{/notEmpty}}
</div>
</div>