diff options
author | Stas Vilchik <stas.vilchik@sonarsource.com> | 2018-09-11 14:26:18 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2018-09-19 10:51:38 +0200 |
commit | 818b95efd106fe8149821d3507c8a59c00d74688 (patch) | |
tree | da89f05d65ff0a876c6836d808bbc051ad762457 /server/sonar-web | |
parent | 55822b5c264747a28161902119482ef7f000ab66 (diff) | |
download | sonarqube-818b95efd106fe8149821d3507c8a59c00d74688.tar.gz sonarqube-818b95efd106fe8149821d3507c8a59c00d74688.zip |
SONAR-11252 fix error after deleting provisioned project (#693)
Diffstat (limited to 'server/sonar-web')
-rw-r--r-- | server/sonar-web/src/main/js/app/components/ComponentContainer.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/server/sonar-web/src/main/js/app/components/ComponentContainer.tsx b/server/sonar-web/src/main/js/app/components/ComponentContainer.tsx index e8ee249706d..98a8b23ad79 100644 --- a/server/sonar-web/src/main/js/app/components/ComponentContainer.tsx +++ b/server/sonar-web/src/main/js/app/components/ComponentContainer.tsx @@ -89,6 +89,7 @@ export class ComponentContainer extends React.PureComponent<Props, State> { componentWillUnmount() { this.mounted = false; + window.clearTimeout(this.watchStatusTimer); } addQualifier = (component: Component) => ({ |