render targets in table, update targets

This commit is contained in:
Milo Schwartz
2024-11-12 23:59:47 -05:00
parent 93ea7e4620
commit cf3cf4d827
16 changed files with 744 additions and 472 deletions

View File

@@ -36,8 +36,12 @@ export default async function ResourceLayout(props: ResourceLayoutProps) {
href: `/{orgId}/settings/resources/{resourceId}/general`,
},
{
title: "Targets",
href: `/{orgId}/settings/resources/{resourceId}/targets`,
title: "Connectivity",
href: `/{orgId}/settings/resources/{resourceId}/connectivity`,
},
{
title: "Authentication",
href: `/{orgId}/settings/resources/{resourceId}/authentication`,
},
];
@@ -66,7 +70,7 @@ export default async function ResourceLayout(props: ResourceLayoutProps) {
<ResourceProvider resource={resource}>
<SidebarSettings
sidebarNavItems={sidebarNavItems}
limitWidth={true}
limitWidth={false}
>
{children}
</SidebarSettings>