diff options
author | Jeremy Davis <jeremy.davis@sonarsource.com> | 2024-05-22 12:12:50 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2024-05-27 20:02:41 +0000 |
commit | 42537a47960b55f568297ba2140a3b2919b017df (patch) | |
tree | 7a34aca867db39d079f6dd5f3c1d39281b3d6d63 /server/sonar-web/src/main/js/apps/system | |
parent | 1953626fabdb68e2f271899a16ad30faf4c2a7c8 (diff) | |
download | sonarqube-42537a47960b55f568297ba2140a3b2919b017df.tar.gz sonarqube-42537a47960b55f568297ba2140a3b2919b017df.zip |
SONAR-22218 Rename props to match the new API
Diffstat (limited to 'server/sonar-web/src/main/js/apps/system')
-rw-r--r-- | server/sonar-web/src/main/js/apps/system/components/info-items/HealthItem.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/apps/system/components/info-items/HealthItem.tsx b/server/sonar-web/src/main/js/apps/system/components/info-items/HealthItem.tsx index 357e8dca6fc..9b1988e7fab 100644 --- a/server/sonar-web/src/main/js/apps/system/components/info-items/HealthItem.tsx +++ b/server/sonar-web/src/main/js/apps/system/components/info-items/HealthItem.tsx @@ -44,7 +44,7 @@ export default function HealthItem({ className, name, health, healthCauses }: Re ))} <Tooltip - overlay={name ? translateWithParameters('system.current_health_of_x', name) : undefined} + content={name ? translateWithParameters('system.current_health_of_x', name) : undefined} > <span>{statusIndicator}</span> </Tooltip> |