diff options
Diffstat (limited to 'server/sonar-web/src/main/js/apps/quality-profiles/details/ProfileRulesRowTotal.tsx')
-rw-r--r-- | server/sonar-web/src/main/js/apps/quality-profiles/details/ProfileRulesRowTotal.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/apps/quality-profiles/details/ProfileRulesRowTotal.tsx b/server/sonar-web/src/main/js/apps/quality-profiles/details/ProfileRulesRowTotal.tsx index e75e2b5cd9d..8027c625e0a 100644 --- a/server/sonar-web/src/main/js/apps/quality-profiles/details/ProfileRulesRowTotal.tsx +++ b/server/sonar-web/src/main/js/apps/quality-profiles/details/ProfileRulesRowTotal.tsx @@ -59,7 +59,7 @@ export default function ProfileRulesRowTotal(props: Props) { <td className="thin nowrap text-right"> {inactiveCount != null && (inactiveCount > 0 ? ( - <Link to={inactiveRulesUrl} className="small text-muted"> + <Link className="small text-muted" to={inactiveRulesUrl}> <strong>{formatMeasure(inactiveCount, 'SHORT_INT', null)}</strong> </Link> ) : ( |