chore: dont export them as they're part of the unstable API, just reference inline for now

Signed-off-by: blam <ben@blam.sh>
This commit is contained in:
blam
2022-06-29 13:48:17 +02:00
parent 6ecafa9d3b
commit 9d0db13c22
4 changed files with 8 additions and 14 deletions
@@ -43,7 +43,6 @@ import {
} from '@backstage/plugin-azure-devops';
import { EntityBadgesDialog } from '@backstage/plugin-badges';
import {
EntityContextMenuOptions,
EntityAboutCard,
EntityDependsOnComponentsCard,
EntityDependsOnResourcesCard,
@@ -166,15 +165,13 @@ const EntityLayoutWrapper = (props: { children?: ReactNode }) => {
];
}, []);
const options: EntityContextMenuOptions = {
disableUnregister: 'visible',
};
return (
<>
<EntityLayout
UNSTABLE_extraContextMenuItems={extraMenuItems}
UNSTABLE_contextMenuOptions={options}
UNSTABLE_contextMenuOptions={{
disableUnregister: 'visible',
}}
>
{props.children}
</EntityLayout>