aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/app/components
diff options
context:
space:
mode:
authorGrégoire Aubert <gregoire.aubert@sonarsource.com>2017-10-25 10:31:38 +0200
committerGrégoire Aubert <gregoire.aubert@sonarsource.com>2017-10-25 14:28:47 +0200
commit37a16f673702a7475766338feac6f235ff513509 (patch)
tree1a526afa08a145ed289dfde98d30924a917ab0d0 /server/sonar-web/src/main/js/app/components
parentea34a3048623669bd4602b8dee745e144b503852 (diff)
downloadsonarqube-37a16f673702a7475766338feac6f235ff513509.tar.gz
sonarqube-37a16f673702a7475766338feac6f235ff513509.zip
SONAR-9936 Add loading spinner when doing the license preview
Diffstat (limited to 'server/sonar-web/src/main/js/app/components')
-rw-r--r--server/sonar-web/src/main/js/app/components/AdminContainer.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/sonar-web/src/main/js/app/components/AdminContainer.tsx b/server/sonar-web/src/main/js/app/components/AdminContainer.tsx
index bf12d09e0a1..4060464e1d9 100644
--- a/server/sonar-web/src/main/js/app/components/AdminContainer.tsx
+++ b/server/sonar-web/src/main/js/app/components/AdminContainer.tsx
@@ -67,10 +67,10 @@ class AdminContainer extends React.PureComponent<Props> {
}
fetchNavigationSettings = () =>
- getSettingsNavigation().then(r => this.props.setAdminPages(r.extensions), () => { });
+ getSettingsNavigation().then(r => this.props.setAdminPages(r.extensions), () => {});
fetchEditionStatus = () =>
- getEditionStatus().then(editionStatus => this.props.setEditionStatus(editionStatus), () => { });
+ getEditionStatus().then(editionStatus => this.props.setEditionStatus(editionStatus), () => {});
render() {
const { adminPages, organizationsEnabled } = this.props.appState;