From: Grégoire Aubert Date: Wed, 4 Oct 2017 10:40:20 +0000 (+0200) Subject: SONAR-9916 Reset notExist component flag when a component is correctly loading in... X-Git-Tag: 6.6-RC1~32 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=a9d2422b125b9d89cd8efeef69b43439d41d0bf5;p=sonarqube.git SONAR-9916 Reset notExist component flag when a component is correctly loading in the issue viewer --- diff --git a/server/sonar-web/src/main/js/components/SourceViewer/SourceViewerBase.js b/server/sonar-web/src/main/js/components/SourceViewer/SourceViewerBase.js index afda1bbd764..b65c2d51bc5 100644 --- a/server/sonar-web/src/main/js/components/SourceViewer/SourceViewerBase.js +++ b/server/sonar-web/src/main/js/components/SourceViewer/SourceViewerBase.js @@ -250,6 +250,7 @@ export default class SourceViewerBase extends React.PureComponent { issuesByLine: issuesByLine(issues), issueLocationsByLine: locationsByLine(issues), loading: false, + notExist: false, hasSourcesAfter: sources.length > LINES, sources: this.computeCoverageStatus(finalSources), sourceRemoved: false,