]> source.dussan.org Git - sonarqube.git/commitdiff
fix scrolling of the issues sidebar on the Explore page
authorStas Vilchik <stas.vilchik@sonarsource.com>
Thu, 11 Jan 2018 15:48:58 +0000 (16:48 +0100)
committerStas Vilchik <stas.vilchik@sonarsource.com>
Fri, 12 Jan 2018 16:37:53 +0000 (17:37 +0100)
server/sonar-web/src/main/js/apps/issues/conciseIssuesList/ConciseIssueBox.js

index 2525cc84cc584cf9cde0cb141ca58e77d988e953..953284b70a9b445dd7e86c58407a41229cc16c9e 100644 (file)
@@ -71,7 +71,7 @@ export default class ConciseIssueBox extends React.PureComponent {
       this.props.scroll(this.rootElement);
     } else {
       // otherwise scroll until the the message element is located on top
-      this.props.scroll(this.messageElement, window.innerHeight - 200);
+      this.props.scroll(this.messageElement, window.innerHeight - 250);
     }
   };