]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-6331 fix for provisioned project
authorStas Vilchik <vilchiks@gmail.com>
Tue, 27 Oct 2015 14:55:40 +0000 (15:55 +0100)
committerStas Vilchik <vilchiks@gmail.com>
Tue, 27 Oct 2015 14:55:40 +0000 (15:55 +0100)
server/sonar-web/src/main/js/apps/overview/main.js

index 8062198e26eac1dbcbf57e73cdcb7c69ae4f36c9..5c19f4282f5ec32bab3b552e81a28a5825f9c258 100644 (file)
@@ -23,7 +23,7 @@ export const Overview = React.createClass({
   },
 
   componentDidMount () {
-    if (this.props.hasSnapshots) {
+    if (this.props.component.hasSnapshot) {
       this.requestMetrics();
     }
   },
@@ -58,7 +58,7 @@ export const Overview = React.createClass({
   },
 
   render () {
-    if (!this.props.hasSnapshots) {
+    if (!this.props.component.hasSnapshot) {
       return <div className="overview"><Empty/></div>;
     }