diff options
author | Stas Vilchik <stas.vilchik@sonarsource.com> | 2018-08-10 16:02:22 +0200 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2018-08-10 20:21:32 +0200 |
commit | d3530ff0004d44a2c4e9140ff9cc7774b8bc38a4 (patch) | |
tree | 03ad7aa9ab7d9bcfb0f5b354149da9c014052010 /server/sonar-web/src/main/js/apps/explore | |
parent | 29b5f4a0ebf686f9dee7f1d6c6eab65fe381654d (diff) | |
download | sonarqube-d3530ff0004d44a2c4e9140ff9cc7774b8bc38a4.tar.gz sonarqube-d3530ff0004d44a2c4e9140ff9cc7774b8bc38a4.zip |
update main dependencies & fix autofixable eslint warnings (#601)
Diffstat (limited to 'server/sonar-web/src/main/js/apps/explore')
-rw-r--r-- | server/sonar-web/src/main/js/apps/explore/Explore.tsx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/server/sonar-web/src/main/js/apps/explore/Explore.tsx b/server/sonar-web/src/main/js/apps/explore/Explore.tsx index 967796f4317..eb132497a6a 100644 --- a/server/sonar-web/src/main/js/apps/explore/Explore.tsx +++ b/server/sonar-web/src/main/js/apps/explore/Explore.tsx @@ -31,21 +31,21 @@ interface Props { export default function Explore(props: Props) { return ( <div id="explore"> - <ContextNavBar id="explore-navigation" height={theme.contextNavHeightRaw}> + <ContextNavBar height={theme.contextNavHeightRaw} id="explore-navigation"> <header className="navbar-context-header"> <h1>{translate('explore')}</h1> </header> <NavBarTabs> <li> - <Link to="/explore/projects" activeClassName="active"> + <Link activeClassName="active" to="/explore/projects"> {translate('projects.page')} </Link> </li> <li> <Link - to={{ pathname: '/explore/issues', query: { resolved: 'false' } }} - activeClassName="active"> + activeClassName="active" + to={{ pathname: '/explore/issues', query: { resolved: 'false' } }}> {translate('issues.page')} </Link> </li> |