]> source.dussan.org Git - sonarqube.git/commitdiff
remove link effect from active profile header
authorStas Vilchik <vilchiks@gmail.com>
Wed, 13 Jul 2016 13:10:57 +0000 (15:10 +0200)
committerStas Vilchik <vilchiks@gmail.com>
Wed, 13 Jul 2016 13:32:13 +0000 (15:32 +0200)
server/sonar-web/src/main/js/apps/quality-profiles/components/ProfileLink.js

index eda61f67fe0c55365c044bafd82d17a4957c546a..1e0d0cfd1dd792fe659608851ae35d5643373cf5 100644 (file)
@@ -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>
     );