diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2015-06-25 16:16:46 +0200 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2015-06-25 16:16:46 +0200 |
commit | a75b7857be983aff9aa19a591d97382d384a62c9 (patch) | |
tree | b64faf3e9c979e70d394ea55a190ba0d7edac504 /server | |
parent | bf1a44781135f8e7a9498bfdb052f952ce983151 (diff) | |
download | sonarqube-a75b7857be983aff9aa19a591d97382d384a62c9.tar.gz sonarqube-a75b7857be983aff9aa19a591d97382d384a62c9.zip |
SONAR-6852 decrease the list of kept issue fields
Diffstat (limited to 'server')
-rw-r--r-- | server/sonar-web/src/main/js/apps/issues/models/issue.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/server/sonar-web/src/main/js/apps/issues/models/issue.js b/server/sonar-web/src/main/js/apps/issues/models/issue.js index 35e49c86050..6266434fa23 100644 --- a/server/sonar-web/src/main/js/apps/issues/models/issue.js +++ b/server/sonar-web/src/main/js/apps/issues/models/issue.js @@ -4,9 +4,7 @@ define([ return Issue.extend({ reset: function (attrs, options) { - // TODO remove me soon - var keepFields = ['index', 'selected', 'componentUuid', 'componentLongName', 'componentQualifier', - 'projectLongName', 'projectUuid', 'ruleName', 'comments']; + var keepFields = ['index', 'selected', 'comments']; keepFields.forEach(function (field) { attrs[field] = this.get(field); }.bind(this)); |