From d41c7785f74e96ea1cc0295860524aa3fc29dd3a Mon Sep 17 00:00:00 2001 From: Stas Vilchik Date: Tue, 13 Sep 2016 14:42:06 +0200 Subject: [PATCH] SONAR-8029 add visual feedback when removing projects --- server/sonar-web/src/main/js/apps/projects/main.js | 1 + 1 file changed, 1 insertion(+) diff --git a/server/sonar-web/src/main/js/apps/projects/main.js b/server/sonar-web/src/main/js/apps/projects/main.js index 1e92771f8d5..c3a240b19db 100644 --- a/server/sonar-web/src/main/js/apps/projects/main.js +++ b/server/sonar-web/src/main/js/apps/projects/main.js @@ -182,6 +182,7 @@ export default React.createClass({ }, deleteProjects() { + this.setState({ ready: false }); const ids = this.state.selection.join(','); deleteComponents({ ids }).then(() => { this.setState({ page: 1, selection: [] }, this.requestProjects); -- 2.39.5