File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
site/src/pages/OrganizationSettingsPage/UserTable Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 14
14
* users like that, though, know that it will be painful
15
15
*/
16
16
import { type Interpolation , type Theme , useTheme } from "@emotion/react" ;
17
- import Tooltip from "@mui/material/Tooltip" ;
17
+ import MUITooltip from "@mui/material/Tooltip" ;
18
18
import type { LoginType , SlimRole } from "api/typesGenerated" ;
19
19
import {
20
20
Popover ,
@@ -87,9 +87,9 @@ export const UserRoleCell: FC<UserRoleCellProps> = ({
87
87
}
88
88
>
89
89
{ mainDisplayRole . global ? (
90
- < Tooltip title = "This user has this role for all organizations." >
90
+ < MUITooltip title = "This user has this role for all organizations." >
91
91
< span > { displayName } *</ span >
92
- </ Tooltip >
92
+ </ MUITooltip >
93
93
) : (
94
94
displayName
95
95
) }
@@ -144,9 +144,9 @@ const OverflowRolePill: FC<OverflowRolePillProps> = ({ roles }) => {
144
144
css = { role . global ? styles . globalRoleBadge : styles . roleBadge }
145
145
>
146
146
{ role . global ? (
147
- < Tooltip title = "This user has this role for all organizations." >
147
+ < MUITooltip title = "This user has this role for all organizations." >
148
148
< span > { role . display_name || role . name } *</ span >
149
- </ Tooltip >
149
+ </ MUITooltip >
150
150
) : (
151
151
role . display_name || role . name
152
152
) }
You can’t perform that action at this time.
0 commit comments