diff options
author | 7PH <benjamin.raymond@sonarsource.com> | 2023-09-18 14:18:07 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2023-09-19 20:02:46 +0000 |
commit | 3836fc5641c761fccbb60a166866ca216f53ba51 (patch) | |
tree | d3c2e406282c5a86dbe1e6a2efc5b1ccc7fa4fc5 /server/sonar-web/src/main/js/apps/quality-profiles/components | |
parent | b9fa62ed639e0609618fb55d3a84a38126bf40e9 (diff) | |
download | sonarqube-3836fc5641c761fccbb60a166866ca216f53ba51.tar.gz sonarqube-3836fc5641c761fccbb60a166866ca216f53ba51.zip |
SONAR-20487 Fix dropdown accessibility and drop isPortal usage
Diffstat (limited to 'server/sonar-web/src/main/js/apps/quality-profiles/components')
-rw-r--r-- | server/sonar-web/src/main/js/apps/quality-profiles/components/ProfileActions.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/apps/quality-profiles/components/ProfileActions.tsx b/server/sonar-web/src/main/js/apps/quality-profiles/components/ProfileActions.tsx index cdcc9aa82d5..1d2173c202c 100644 --- a/server/sonar-web/src/main/js/apps/quality-profiles/components/ProfileActions.tsx +++ b/server/sonar-web/src/main/js/apps/quality-profiles/components/ProfileActions.tsx @@ -25,6 +25,7 @@ import { ItemDownload, ItemLink, PopupPlacement, + PopupZLevel, Tooltip, } from 'design-system'; import { some } from 'lodash'; @@ -218,7 +219,7 @@ class ProfileActions extends React.PureComponent<Props, State> { profile.name, profile.languageName, )} - isPortal + zLevel={PopupZLevel.Global} > {actions.edit && ( <ItemLink className="it__quality-profiles__activate-more-rules" to={activateMoreUrl}> |