From 4c2939774e21f7e0916c596dfb977e23a48a9c47 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Gr=C3=A9goire=20Aubert?= Date: Wed, 18 Oct 2017 14:58:06 +0200 Subject: [PATCH] SONAR-9936 Automatically update edition status every 5 seconds --- server/sonar-web/src/main/js/apps/marketplace/App.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/server/sonar-web/src/main/js/apps/marketplace/App.tsx b/server/sonar-web/src/main/js/apps/marketplace/App.tsx index 74512fb5dd6..eaf510ac707 100644 --- a/server/sonar-web/src/main/js/apps/marketplace/App.tsx +++ b/server/sonar-web/src/main/js/apps/marketplace/App.tsx @@ -155,6 +155,7 @@ export default class App extends React.PureComponent { editionStatus => { if (this.mounted) { this.updateEditionStatus(editionStatus); + setTimeout(this.fetchEditionStatus, 5000); } }, () => {} -- 2.39.5