diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2016-12-19 13:44:27 +0100 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2016-12-19 13:45:27 +0100 |
commit | 81b5eb8f1e76a1e791dcc3cdfd10260e73692cb8 (patch) | |
tree | 16ad10c3e44fd9114c5d66e59787564359a927f9 /server/sonar-web/src/main | |
parent | 6a489759fdf4bf4332c193d51d5c77988706a449 (diff) | |
download | sonarqube-81b5eb8f1e76a1e791dcc3cdfd10260e73692cb8.tar.gz sonarqube-81b5eb8f1e76a1e791dcc3cdfd10260e73692cb8.zip |
SONAR-7729 Improve display of issue changelog entries of type 'FILE'
Diffstat (limited to 'server/sonar-web/src/main')
-rw-r--r-- | server/sonar-web/src/main/js/helpers/handlebars/changelog.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/helpers/handlebars/changelog.js b/server/sonar-web/src/main/js/helpers/handlebars/changelog.js index ab583714f33..0bda7b82214 100644 --- a/server/sonar-web/src/main/js/helpers/handlebars/changelog.js +++ b/server/sonar-web/src/main/js/helpers/handlebars/changelog.js @@ -23,7 +23,7 @@ module.exports = function (diff) { let message; if (diff.key === 'file') { - return translate('issue.change.issue_was_moved'); + return translateWithParameters('issue.change.file_move', diff.oldValue, diff.newValue); } if (diff.newValue != null) { |