aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Du Hart <jduhart@mdsol.com>2017-12-12 03:36:14 -0500
committerStas Vilchik <stas.vilchik@sonarsource.com>2017-12-13 11:02:35 +0100
commita272c3f10047489b2297e08a0f58dab27af350dc (patch)
tree03ae6006c411d383d23c89f36570004013a4f38c
parent45db190c5e259163bb31eac16b8f7fe80d35a4d4 (diff)
downloadsonarqube-a272c3f10047489b2297e08a0f58dab27af350dc.tar.gz
sonarqube-a272c3f10047489b2297e08a0f58dab27af350dc.zip
SONAR-10191 Update profile name parameter (#2896)
-rw-r--r--server/sonar-web/src/main/js/apps/quality-profiles/details/ProfileExporters.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/apps/quality-profiles/details/ProfileExporters.tsx b/server/sonar-web/src/main/js/apps/quality-profiles/details/ProfileExporters.tsx
index 4c3f452af50..97f00992833 100644
--- a/server/sonar-web/src/main/js/apps/quality-profiles/details/ProfileExporters.tsx
+++ b/server/sonar-web/src/main/js/apps/quality-profiles/details/ProfileExporters.tsx
@@ -36,7 +36,7 @@ export default class ProfileExporters extends React.PureComponent<Props> {
const parameters = {
exporterKey: exporter.key,
language: profile.language,
- name: profile.name
+ qualityProfile: profile.name
};
if (organization) {
Object.assign(parameters, { organization });