We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34872bb commit 04a3cc4Copy full SHA for 04a3cc4
1 file changed
apps/webapp/app/components/navigation/OrganizationSettingsSideMenu.tsx
@@ -130,14 +130,18 @@ export function OrganizationSettingsSideMenu({
130
to={organizationTeamPath(organization)}
131
data-action="team"
132
/>
133
- <SideMenuItem
134
- name="Roles"
135
- icon={ShieldCheckIcon}
136
- activeIconColor="text-sky-500"
137
- inactiveIconColor="text-sky-500"
138
- to={organizationRolesPath(organization)}
139
- data-action="roles"
140
- />
+ {isManagedCloud && (
+ <>
+ <SideMenuItem
+ name="Roles"
+ icon={ShieldCheckIcon}
+ activeIconColor="text-sky-500"
+ inactiveIconColor="text-sky-500"
+ to={organizationRolesPath(organization)}
141
+ data-action="roles"
142
+ />
143
+ </>
144
+ )}
145
<SideMenuItem
146
name="Settings"
147
icon={Cog8ToothIcon}
0 commit comments