diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2016-07-13 15:10:57 +0200 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2016-07-13 15:32:13 +0200 |
commit | 3d687a8416eea58fce8a21962d587ccae1bc5edc (patch) | |
tree | 8c1201d94705f91e645cbbd2a6808bb98457e776 | |
parent | 20b8f11c7d08b49c21519509d45c4ee1492f91bf (diff) | |
download | sonarqube-3d687a8416eea58fce8a21962d587ccae1bc5edc.tar.gz sonarqube-3d687a8416eea58fce8a21962d587ccae1bc5edc.zip |
remove link effect from active profile header
-rw-r--r-- | server/sonar-web/src/main/js/apps/quality-profiles/components/ProfileLink.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/apps/quality-profiles/components/ProfileLink.js b/server/sonar-web/src/main/js/apps/quality-profiles/components/ProfileLink.js index eda61f67fe0..1e0d0cfd1dd 100644 --- a/server/sonar-web/src/main/js/apps/quality-profiles/components/ProfileLink.js +++ b/server/sonar-web/src/main/js/apps/quality-profiles/components/ProfileLink.js @@ -29,7 +29,10 @@ export default class ProfileLink extends React.Component { const { profileKey, children, ...other } = this.props; const query = { key: profileKey }; return ( - <Link to={{ pathname: '/show', query }} {...other}> + <Link + to={{ pathname: '/show', query }} + activeClassName="link-no-underline" + {...other}> {children} </Link> ); |