Skip to content

Commit 56fd626

Browse files
committed
feat(ObjectSummary): remove Acl
1 parent eb90c31 commit 56fd626

File tree

6 files changed

+0
-52
lines changed

6 files changed

+0
-52
lines changed

src/containers/Tenant/Acl/Acl.tsx

Lines changed: 0 additions & 32 deletions
This file was deleted.

src/containers/Tenant/Acl/i18n/en.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

src/containers/Tenant/Acl/i18n/index.ts

Lines changed: 0 additions & 7 deletions
This file was deleted.

src/containers/Tenant/ObjectSummary/ObjectSummary.tsx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ import {
3333
formatSecondsToHours,
3434
} from '../../../utils/dataFormatters/dataFormatters';
3535
import {useTypedDispatch, useTypedSelector} from '../../../utils/hooks';
36-
import {Acl} from '../Acl/Acl';
3736
import {EntityTitle} from '../EntityTitle/EntityTitle';
3837
import {SchemaViewer} from '../Schema/SchemaViewer/SchemaViewer';
3938
import {useCurrentSchema} from '../TenantContext';
@@ -366,9 +365,6 @@ export function ObjectSummary({
366365

367366
const renderTabContent = () => {
368367
switch (summaryTab) {
369-
case TENANT_SUMMARY_TABS_IDS.acl: {
370-
return <Acl />;
371-
}
372368
case TENANT_SUMMARY_TABS_IDS.schema: {
373369
return <SchemaViewer type={type} path={path} tenantName={tenantName} />;
374370
}

src/containers/Tenant/TenantPages.tsx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,6 @@ export const TENANT_INFO_TABS = [
3333
id: TENANT_SUMMARY_TABS_IDS.overview,
3434
title: 'Overview',
3535
},
36-
{
37-
id: TENANT_SUMMARY_TABS_IDS.acl,
38-
title: 'ACL',
39-
},
4036
];
4137

4238
export const TENANT_SCHEMA_TAB = [

src/store/reducers/tenant/constants.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ export const TENANT_DIAGNOSTICS_TABS_IDS = {
3434

3535
export const TENANT_SUMMARY_TABS_IDS = {
3636
overview: 'overview',
37-
acl: 'acl',
3837
schema: 'schema',
3938
} as const;
4039

0 commit comments

Comments
 (0)