aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/app/components/GlobalLoading.js
diff options
context:
space:
mode:
authorStas Vilchik <stas-vilchik@users.noreply.github.com>2017-03-17 09:10:48 +0100
committerGitHub <noreply@github.com>2017-03-17 09:10:48 +0100
commitde4365079bad2df3bdee2133576dc913ffbf1ab2 (patch)
treea522ccb952f0d37f454e8188e13b3dec3f731912 /server/sonar-web/src/main/js/app/components/GlobalLoading.js
parent6a03df65cc0c91a26150ea172a2c480e07326ea1 (diff)
downloadsonarqube-de4365079bad2df3bdee2133576dc913ffbf1ab2.tar.gz
sonarqube-de4365079bad2df3bdee2133576dc913ffbf1ab2.zip
format code using prettier (#1774)
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>
);
}
}