diff options
author | ssjenka <ssjenka@ops-slave-fedora25-1.internal.sonarsource.com> | 2017-05-19 16:44:16 +0200 |
---|---|---|
committer | ssjenka <ssjenka@ops-slave-fedora25-1.internal.sonarsource.com> | 2017-05-19 16:44:16 +0200 |
commit | 475d7778205c434408960be041b52013acfc7ee0 (patch) | |
tree | 29c35b227bf41836a5cfba1067e26a150b4bb2a5 /server/sonar-web | |
parent | 598cfa5db10725b14821c33826c3a55f63aa1243 (diff) | |
parent | f89e8102eb8c01a417a9a3fa2a046dcaba18f7d2 (diff) | |
download | sonarqube-475d7778205c434408960be041b52013acfc7ee0.tar.gz sonarqube-475d7778205c434408960be041b52013acfc7ee0.zip |
Automatic merge from branch-6.4
* origin/branch-6.4:
SONAR-8748 fix typo in UnauthorizedException message
SONAR-8888 use DefinedQProfileInsert when creating an organization
clear issues selection when refreshing list
Diffstat (limited to 'server/sonar-web')
-rw-r--r-- | server/sonar-web/src/main/js/apps/issues/components/App.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/apps/issues/components/App.js b/server/sonar-web/src/main/js/apps/issues/components/App.js index e56811d72c3..000622e2064 100644 --- a/server/sonar-web/src/main/js/apps/issues/components/App.js +++ b/server/sonar-web/src/main/js/apps/issues/components/App.js @@ -367,7 +367,7 @@ export default class App extends React.PureComponent { }; fetchFirstIssues() { - this.setState({ loading: true }); + this.setState({ checked: [], loading: true }); return this.fetchIssues({}, true).then(({ facets, issues, paging, ...other }) => { if (this.mounted) { const openIssue = this.getOpenIssue(this.props, issues); |