diff options
author | Stas Vilchik <stas.vilchik@sonarsource.com> | 2018-01-29 14:21:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-29 14:21:28 +0100 |
commit | cebce15815204aa189f63f9e1b86143b258898d2 (patch) | |
tree | 5a3a773405e86a42e29c12c3e447951052bec6e9 /server/sonar-web/src/main/js/components/issue | |
parent | ad504279d97bd55d8c191b1ffb793c6f005ffa5a (diff) | |
download | sonarqube-cebce15815204aa189f63f9e1b86143b258898d2.tar.gz sonarqube-cebce15815204aa189f63f9e1b86143b258898d2.zip |
rewrite rules app with react (#2982)
Diffstat (limited to 'server/sonar-web/src/main/js/components/issue')
-rw-r--r-- | server/sonar-web/src/main/js/components/issue/components/IssueTags.js | 5 | ||||
-rw-r--r-- | server/sonar-web/src/main/js/components/issue/components/__tests__/__snapshots__/IssueTags-test.js.snap | 1 |
2 files changed, 4 insertions, 2 deletions
diff --git a/server/sonar-web/src/main/js/components/issue/components/IssueTags.js b/server/sonar-web/src/main/js/components/issue/components/IssueTags.js index ee6a6e08e25..e4ba9ab9968 100644 --- a/server/sonar-web/src/main/js/components/issue/components/IssueTags.js +++ b/server/sonar-web/src/main/js/components/issue/components/IssueTags.js @@ -78,8 +78,8 @@ export default class IssueTags extends React.PureComponent { className={'js-issue-edit-tags button-link issue-action issue-action-with-options'} onClick={this.toggleSetTags}> <TagsList - tags={issue.tags && issue.tags.length > 0 ? issue.tags : [translate('issue.no_tag')]} allowUpdate={this.props.canSetTags} + tags={issue.tags && issue.tags.length > 0 ? issue.tags : [translate('issue.no_tag')]} /> </button> </BubblePopupHelper> @@ -87,8 +87,9 @@ export default class IssueTags extends React.PureComponent { } else { return ( <TagsList - tags={issue.tags && issue.tags.length > 0 ? issue.tags : [translate('issue.no_tag')]} allowUpdate={this.props.canSetTags} + className="note" + tags={issue.tags && issue.tags.length > 0 ? issue.tags : [translate('issue.no_tag')]} /> ); } diff --git a/server/sonar-web/src/main/js/components/issue/components/__tests__/__snapshots__/IssueTags-test.js.snap b/server/sonar-web/src/main/js/components/issue/components/__tests__/__snapshots__/IssueTags-test.js.snap index 055531ca38d..178f8b75e19 100644 --- a/server/sonar-web/src/main/js/components/issue/components/__tests__/__snapshots__/IssueTags-test.js.snap +++ b/server/sonar-web/src/main/js/components/issue/components/__tests__/__snapshots__/IssueTags-test.js.snap @@ -93,6 +93,7 @@ exports[`should render with the action 1`] = ` exports[`should render without the action when the correct rights are missing 1`] = ` <TagsList allowUpdate={false} + className="note" tags={ Array [ "issue.no_tag", |