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/design-system/src/components/input | |
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/design-system/src/components/input')
-rw-r--r-- | server/sonar-web/design-system/src/components/input/MultiSelectMenuOption.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/design-system/src/components/input/MultiSelectMenuOption.tsx b/server/sonar-web/design-system/src/components/input/MultiSelectMenuOption.tsx index 2df004a3c6a..2336dd914a3 100644 --- a/server/sonar-web/design-system/src/components/input/MultiSelectMenuOption.tsx +++ b/server/sonar-web/design-system/src/components/input/MultiSelectMenuOption.tsx @@ -56,7 +56,7 @@ export function MultiSelectMenuOption(props: MultiSelectOptionProps) { const label = renderLabel(element); return ( - <Tooltip overlay={renderTooltip?.(element, disabled)} placement={PopupPlacement.Right}> + <Tooltip content={renderTooltip?.(element, disabled)} placement={PopupPlacement.Right}> <ItemCheckbox checked={Boolean(selected)} className={classNames('sw-flex sw-py-2 sw-px-4', { active })} |