aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/app/components/GlobalLoading.js
diff options
context:
space:
mode:
Diffstat (limited to 'server/sonar-web/src/main/js/app/components/GlobalLoading.js')
-rw-r--r--server/sonar-web/src/main/js/app/components/GlobalLoading.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/server/sonar-web/src/main/js/app/components/GlobalLoading.js b/server/sonar-web/src/main/js/app/components/GlobalLoading.js
index 67d707e52ca..b5e45197357 100644
--- a/server/sonar-web/src/main/js/app/components/GlobalLoading.js
+++ b/server/sonar-web/src/main/js/app/components/GlobalLoading.js
@@ -22,12 +22,12 @@ import React from 'react';
import './GlobalLoading.css';
export default class GlobalLoading extends React.Component {
- render () {
+ render() {
return (
- <div className="global-loading">
- <i className="spinner global-loading-spinner"/>
- <span className="global-loading-text">Loading...</span>
- </div>
+ <div className="global-loading">
+ <i className="spinner global-loading-spinner" />
+ <span className="global-loading-text">Loading...</span>
+ </div>
);
}
}