]> source.dussan.org Git - sonarqube.git/commitdiff
clear issues selection when refreshing list
authorStas Vilchik <vilchiks@gmail.com>
Fri, 19 May 2017 08:58:59 +0000 (10:58 +0200)
committerStas Vilchik <vilchiks@gmail.com>
Fri, 19 May 2017 08:58:59 +0000 (10:58 +0200)
server/sonar-web/src/main/js/apps/issues/components/App.js

index e56811d72c36a8bf80368c44ab915274f32757f5..000622e20649198e07ed15fc00c11a38aac1ef20 100644 (file)
@@ -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);