diff options
author | Grégoire Aubert <gregoire.aubert@sonarsource.com> | 2017-10-25 10:31:38 +0200 |
---|---|---|
committer | Grégoire Aubert <gregoire.aubert@sonarsource.com> | 2017-10-25 14:28:47 +0200 |
commit | 37a16f673702a7475766338feac6f235ff513509 (patch) | |
tree | 1a526afa08a145ed289dfde98d30924a917ab0d0 /server/sonar-web/src/main/js/app/components | |
parent | ea34a3048623669bd4602b8dee745e144b503852 (diff) | |
download | sonarqube-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.tsx | 4 |
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; |