Merge pull request #3021 from akhilmhdh/fix/project-delete

fix: resolved org sidebar not showing in org member detail window
This commit is contained in:
Maidul Islam
2025-01-21 15:14:12 -05:00
committed by GitHub

View File

@@ -32,11 +32,14 @@ export const OrganizationLayout = () => {
const { t } = useTranslation();
const shouldShowOrgSidebar = (
const shouldShowOrgSidebar = !(
[
linkOptions({ to: "/organization/access-management" }).to,
linkOptions({ to: "/organization/settings" }).to,
linkOptions({ to: "/organization/audit-logs" }).to
linkOptions({ to: "/organization/secret-manager/overview" }).to,
linkOptions({ to: "/organization/cert-manager/overview" }).to,
linkOptions({ to: "/organization/ssh/overview" }).to,
linkOptions({ to: "/organization/kms/overview" }).to,
linkOptions({ to: "/organization/secret-scanning" }).to,
linkOptions({ to: "/organization/secret-sharing" }).to
] as string[]
).includes(location.pathname);