aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/app/components/NotFound.js
diff options
context:
space:
mode:
Diffstat (limited to 'server/sonar-web/src/main/js/app/components/NotFound.js')
-rw-r--r--server/sonar-web/src/main/js/app/components/NotFound.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/server/sonar-web/src/main/js/app/components/NotFound.js b/server/sonar-web/src/main/js/app/components/NotFound.js
index c3191e6b8ea..b3254b82fbc 100644
--- a/server/sonar-web/src/main/js/app/components/NotFound.js
+++ b/server/sonar-web/src/main/js/app/components/NotFound.js
@@ -25,10 +25,10 @@ export default function NotFound() {
return (
<SimpleContainer>
<h2 className="big-spacer-bottom">The page you were looking for does not exist.</h2>
- <p className="spacer-bottom">
- You may have mistyped the address or the page may have moved.
+ <p className="spacer-bottom">You may have mistyped the address or the page may have moved.</p>
+ <p>
+ <Link to="/">Go back to the homepage</Link>
</p>
- <p><Link to="/">Go back to the homepage</Link></p>
</SimpleContainer>
);
}